OLD | NEW |
1 // | 1 // |
2 // CSS value names | 2 // CSS value names |
3 // | 3 // |
4 | 4 |
5 // The mode argument is used to limit the keyword to be used only for certain | 5 // The mode argument is used to limit the keyword to be used only for certain |
6 // CSSParserModes. Values that have the prefix -internal- are only allowed by | 6 // CSSParserModes. Values that have the prefix -internal- are only allowed by |
7 // CSSParserModes listed in allowInternalPropertyAndValue() | 7 // CSSParserModes listed in allowInternalPropertyAndValue() |
8 | 8 |
9 inherit | 9 inherit |
10 initial | 10 initial |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // font-variant-caps: | 63 // font-variant-caps: |
64 // | 64 // |
65 // normal | 65 // normal |
66 small-caps | 66 small-caps |
67 all-small-caps | 67 all-small-caps |
68 petite-caps | 68 petite-caps |
69 all-petite-caps | 69 all-petite-caps |
70 unicase | 70 unicase |
71 titling-caps | 71 titling-caps |
72 | 72 |
| 73 // font-variant-numeric |
| 74 // normal |
| 75 lining-nums |
| 76 oldstyle-nums |
| 77 proportional-nums |
| 78 tabular-nums |
| 79 diagonal-fractions |
| 80 stacked-fractions |
| 81 ordinal |
| 82 slashed-zero |
| 83 |
73 // | 84 // |
74 // font-weigth | 85 // font-weigth |
75 // | 86 // |
76 normal | 87 normal |
77 bold | 88 bold |
78 bolder | 89 bolder |
79 lighter | 90 lighter |
80 100 | 91 100 |
81 200 | 92 200 |
82 300 | 93 300 |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1079 | 1090 |
1080 var | 1091 var |
1081 -internal-variable-value | 1092 -internal-variable-value |
1082 | 1093 |
1083 // break-before, break-after, break-inside | 1094 // break-before, break-after, break-inside |
1084 avoid-page | 1095 avoid-page |
1085 page | 1096 page |
1086 recto | 1097 recto |
1087 verso | 1098 verso |
1088 avoid-column | 1099 avoid-column |
OLD | NEW |