Skip to content

Commit 1c62469

Browse files
author
bors-servo
authored
Auto merge of #169 - KiChjang:gimme-MOAR-atoms, r=frewsxcv
Adding missing animatable property names <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/string-cache/169) <!-- Reviewable:end -->
2 parents 199adc9 + a64b061 commit 1c62469

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

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

src/static_atom_list.rs

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ pub static ATOMS: &'static [&'static str] = &[
277277
"border-top-width",
278278
"border-width",
279279
"bottom",
280+
"box-shadow",
280281
"butt",
281282
"bvar",
282283
"by",
@@ -501,6 +502,8 @@ pub static ATOMS: &'static [&'static str] = &[
501502
"filterRes",
502503
"filterunits",
503504
"filterUnits",
505+
"flex-grow",
506+
"flex-shrink",
504507
"float",
505508
"flood",
506509
"flood-color",
@@ -920,6 +923,7 @@ pub static ATOMS: &'static [&'static str] = &[
920923
"outerproduct",
921924
"outline",
922925
"outline-color",
926+
"outline-offset",
923927
"outline-style",
924928
"outline-width",
925929
"output",
@@ -948,6 +952,7 @@ pub static ATOMS: &'static [&'static str] = &[
948952
"patternTransform",
949953
"patternunits",
950954
"patternUnits",
955+
"perspective",
951956
"pi",
952957
"piece",
953958
"piecewise",
@@ -1157,16 +1162,18 @@ pub static ATOMS: &'static [&'static str] = &[
11571162
"tel",
11581163
"tendsto",
11591164
"text",
1160-
"text/plain",
11611165
"text-align",
11621166
"text-anchor",
11631167
"text-decoration",
1168+
"text-indent",
1169+
"text-orientation",
1170+
"text-rendering",
1171+
"text-shadow",
1172+
"text/plain",
11641173
"textlength",
11651174
"textLength",
1166-
"text-orientation",
11671175
"textpath",
11681176
"textPath",
1169-
"text-rendering",
11701177
"thickmathspace",
11711178
"thinmathspace",
11721179
"time",
@@ -1175,6 +1182,7 @@ pub static ATOMS: &'static [&'static str] = &[
11751182
"top",
11761183
"touchevent",
11771184
"transform",
1185+
"transform-origin",
11781186
"transition-delay",
11791187
"transition-duration",
11801188
"transition-property",
@@ -1277,6 +1285,7 @@ pub static ATOMS: &'static [&'static str] = &[
12771285
"ychannelselector",
12781286
"yChannelSelector",
12791287
"z",
1288+
"z-index",
12801289
"zoomandpan",
12811290
"zoomAndPan",
12821291
];

0 commit comments

Comments
 (0)