| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 hiragana | 252 hiragana |
| 253 katakana | 253 katakana |
| 254 hiragana-iroha | 254 hiragana-iroha |
| 255 katakana-iroha | 255 katakana-iroha |
| 256 //none | 256 //none |
| 257 // | 257 // |
| 258 // display | 258 // display |
| 259 // The order here must match the order of the EDisplay enum in RenderStyleConsta
nts.h. | 259 // The order here must match the order of the EDisplay enum in RenderStyleConsta
nts.h. |
| 260 // | 260 // |
| 261 inline | 261 inline |
| 262 // Contains only inline content. |
| 263 paragraph |
| 264 // Contains only block content. |
| 262 block | 265 block |
| 263 inline-block | 266 inline-block |
| 264 flex | 267 flex |
| 265 inline-flex | 268 inline-flex |
| 266 //none | 269 //none |
| 267 | 270 |
| 268 // | 271 // |
| 269 // cursor | 272 // cursor |
| 270 // The order here must match the order of the ECursor enum in RenderStyleConstan
ts.h. | 273 // The order here must match the order of the ECursor enum in RenderStyleConstan
ts.h. |
| 271 // | 274 // |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 790 | 793 |
| 791 // will-change | 794 // will-change |
| 792 // auto | 795 // auto |
| 793 contents | 796 contents |
| 794 scroll-position | 797 scroll-position |
| 795 | 798 |
| 796 // all | 799 // all |
| 797 // initial | 800 // initial |
| 798 // inherit | 801 // inherit |
| 799 unset | 802 unset |
| OLD | NEW |