| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 | 514 |
| 515 // flex-flow | 515 // flex-flow |
| 516 row | 516 row |
| 517 row-reverse | 517 row-reverse |
| 518 column | 518 column |
| 519 column-reverse | 519 column-reverse |
| 520 // nowrap | 520 // nowrap |
| 521 wrap | 521 wrap |
| 522 wrap-reverse | 522 wrap-reverse |
| 523 | 523 |
| 524 // grid-auto-flow |
| 525 dense |
| 526 stack |
| 527 |
| 524 // -internal-marquee-direction | 528 // -internal-marquee-direction |
| 525 forwards | 529 forwards |
| 526 backwards | 530 backwards |
| 527 ahead | 531 ahead |
| 528 // reverse | 532 // reverse |
| 529 // left | 533 // left |
| 530 // right | 534 // right |
| 531 up | 535 up |
| 532 down | 536 down |
| 533 // auto | 537 // auto |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 | 988 |
| 985 // will-change | 989 // will-change |
| 986 // auto | 990 // auto |
| 987 contents | 991 contents |
| 988 scroll-position | 992 scroll-position |
| 989 | 993 |
| 990 // all | 994 // all |
| 991 // initial | 995 // initial |
| 992 // inherit | 996 // inherit |
| 993 unset | 997 unset |
| OLD | NEW |