Skip to content

Commit 05f221a

Browse files
author
bors-servo
committed
Auto merge of #96 - servo:moar-css, r=Manishearth
Add static atoms for names of CSS properties recently added to Servo. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/string-cache/96) <!-- Reviewable:end -->
2 parents 81f680c + c136ab8 commit 05f221a

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

plugin/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "string_cache_plugin"
4-
version = "0.1.3"
4+
version = "0.1.4"
55
authors = [ "The Servo Project Developers" ]
66
description = "A string interning library for Rust, developed as part of the Servo project − compiler plugin."
77
license = "MIT / Apache-2.0"

plugin/src/atom/data.rs

+30
Original file line numberDiff line numberDiff line change
@@ -1131,4 +1131,34 @@ pub static ATOMS: &'static [&'static str] = &[
11311131
"z",
11321132
"zoomAndPan",
11331133
"zoomandpan",
1134+
1135+
"background-size",
1136+
"background-origin",
1137+
"background-clip",
1138+
"border-top-left-radius",
1139+
"border-top-right-radius",
1140+
"border-bottom-right-radius",
1141+
"border-bottom-left-radius",
1142+
"outline-color",
1143+
"outline-style",
1144+
"outline-width",
1145+
"overflow-wrap",
1146+
"list-style-image",
1147+
"list-style-position",
1148+
"list-style-type",
1149+
"column-count",
1150+
"column-width",
1151+
"overflow-x",
1152+
"overflow-y",
1153+
"transition-property",
1154+
"transition-duration",
1155+
"transition-timing-function",
1156+
"transition-delay",
1157+
"border-radius",
1158+
"outline",
1159+
"word-wrap",
1160+
"list-style",
1161+
"columns",
1162+
"transitions",
1163+
11341164
];

0 commit comments

Comments
 (0)