Skip to content

Commit 124b891

Browse files
committed
Merge pull request #21 from glennw/css-keywords
Add some CSS keywords as static atoms.
2 parents 638c30c + b7fa846 commit 124b891

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

macros/src/atom/data.rs

+49
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ pub static atoms: &'static [&'static str] = &[
202202
"axis",
203203
"azimuth",
204204
"background",
205+
"background-attachment",
206+
"background-color",
207+
"background-image",
208+
"background-position",
209+
"background-repeat",
205210
"baseFrequency",
206211
"baseProfile",
207212
"basefrequency",
@@ -216,6 +221,26 @@ pub static atoms: &'static [&'static str] = &[
216221
"bgcolor",
217222
"bias",
218223
"border",
224+
"border-bottom",
225+
"border-bottom-color",
226+
"border-bottom-style",
227+
"border-bottom-width",
228+
"border-color",
229+
"border-left",
230+
"border-left-color",
231+
"border-left-style",
232+
"border-left-width",
233+
"border-right",
234+
"border-right-color",
235+
"border-right-style",
236+
"border-right-width",
237+
"border-style",
238+
"border-top",
239+
"border-top-color",
240+
"border-top-style",
241+
"border-top-width",
242+
"border-width",
243+
"bottom",
219244
"bvar",
220245
"by",
221246
"calcMode",
@@ -541,6 +566,7 @@ pub static atoms: &'static [&'static str] = &[
541566
"laplacian",
542567
"largeop",
543568
"lcm",
569+
"left",
544570
"legend",
545571
"lengthAdjust",
546572
"lengthadjust",
@@ -551,6 +577,7 @@ pub static atoms: &'static [&'static str] = &[
551577
"limitingConeAngle",
552578
"limitingconeangle",
553579
"line",
580+
"line-height",
554581
"linearGradient",
555582
"lineargradient",
556583
"linebreak",
@@ -577,6 +604,11 @@ pub static atoms: &'static [&'static str] = &[
577604
"malignmark",
578605
"manifest",
579606
"map",
607+
"margin",
608+
"margin-bottom",
609+
"margin-left",
610+
"margin-right",
611+
"margin-top",
580612
"marginheight",
581613
"marginwidth",
582614
"mark",
@@ -604,6 +636,8 @@ pub static atoms: &'static [&'static str] = &[
604636
"matrix",
605637
"matrixrow",
606638
"max",
639+
"max-height",
640+
"max-width",
607641
"maxlength",
608642
"maxsize",
609643
"mean",
@@ -622,6 +656,8 @@ pub static atoms: &'static [&'static str] = &[
622656
"mglyph",
623657
"mi",
624658
"min",
659+
"min-height",
660+
"min-width",
625661
"minsize",
626662
"minus",
627663
"missing-glyph",
@@ -779,6 +815,11 @@ pub static atoms: &'static [&'static str] = &[
779815
"overline-position",
780816
"overline-thickness",
781817
"p",
818+
"padding",
819+
"padding-bottom",
820+
"padding-left",
821+
"padding-right",
822+
"padding-top",
782823
"panose-1",
783824
"partialdiff",
784825
"path",
@@ -806,6 +847,7 @@ pub static atoms: &'static [&'static str] = &[
806847
"pointsatz",
807848
"polygon",
808849
"polyline",
850+
"position",
809851
"poster",
810852
"power",
811853
"prefetch",
@@ -859,6 +901,7 @@ pub static atoms: &'static [&'static str] = &[
859901
"restart",
860902
"result",
861903
"rev",
904+
"right",
862905
"role",
863906
"root",
864907
"rotate",
@@ -968,6 +1011,7 @@ pub static atoms: &'static [&'static str] = &[
9681011
"systemLanguage",
9691012
"systemlanguage",
9701013
"tabindex",
1014+
"table-layout",
9711015
"tableValues",
9721016
"tablevalues",
9731017
"tan",
@@ -980,8 +1024,10 @@ pub static atoms: &'static [&'static str] = &[
9801024
"tbreak",
9811025
"tendsto",
9821026
"text",
1027+
"text-align",
9831028
"text-anchor",
9841029
"text-decoration",
1030+
"text-orientation",
9851031
"text-rendering",
9861032
"textLength",
9871033
"textPath",
@@ -992,6 +1038,7 @@ pub static atoms: &'static [&'static str] = &[
9921038
"time",
9931039
"times",
9941040
"to",
1041+
"top",
9951042
"transform",
9961043
"transpose",
9971044
"tref",
@@ -1030,6 +1077,7 @@ pub static atoms: &'static [&'static str] = &[
10301077
"vert-adv-y",
10311078
"vert-origin-x",
10321079
"vert-origin-y",
1080+
"vertical-align",
10331081
"verythickmathspace",
10341082
"verythinmathspace",
10351083
"veryverythickmathspace",
@@ -1046,6 +1094,7 @@ pub static atoms: &'static [&'static str] = &[
10461094
"vspace",
10471095
"wbr",
10481096
"when",
1097+
"white-space",
10491098
"width",
10501099
"widths",
10511100
"word-spacing",

0 commit comments

Comments
 (0)