Chromium Code Reviews| 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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 480 // align-content | 480 // align-content |
| 481 // start | 481 // start |
| 482 // end | 482 // end |
| 483 flex-start | 483 flex-start |
| 484 flex-end | 484 flex-end |
| 485 // center | 485 // center |
| 486 space-between | 486 space-between |
| 487 space-around | 487 space-around |
| 488 space-evenly | 488 space-evenly |
| 489 // stretch | 489 // stretch |
| 490 unsafe | |
|
Timothy Loh
2015/12/07 05:56:13
Probably shouldn't list values multiple times in t
| |
| 491 safe | |
| 490 | 492 |
| 491 // align-items / align-self | 493 // align-items / align-self |
| 492 // flex-start | 494 // flex-start |
| 493 // flex-end | 495 // flex-end |
| 494 // center | 496 // center |
| 495 // baseline | 497 // baseline |
| 496 // stretch | 498 // stretch |
| 497 | 499 |
| 498 // justify-content | 500 // justify-content |
| 499 // start | 501 // start |
| 500 // end | 502 // end |
| 501 // flex-start | 503 // flex-start |
| 502 // flex-end | 504 // flex-end |
| 503 // center | 505 // center |
| 504 // space-between | 506 // space-between |
| 505 // space-around | 507 // space-around |
| 506 // space-evenly | 508 // space-evenly |
| 507 // stretch | 509 // stretch |
| 510 // unsafe | |
|
Timothy Loh
2015/12/07 05:56:13
BTW I wouldn't bother adding these commented out l
| |
| 511 // safe | |
| 508 | 512 |
| 509 | 513 |
| 510 // flex-flow | 514 // flex-flow |
| 511 row | 515 row |
| 512 row-reverse | 516 row-reverse |
| 513 column | 517 column |
| 514 column-reverse | 518 column-reverse |
| 515 // nowrap | 519 // nowrap |
| 516 wrap | 520 wrap |
| 517 wrap-reverse | 521 wrap-reverse |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 932 last-baseline | 936 last-baseline |
| 933 // center | 937 // center |
| 934 // start | 938 // start |
| 935 // end | 939 // end |
| 936 self-start | 940 self-start |
| 937 self-end | 941 self-end |
| 938 // flex-start | 942 // flex-start |
| 939 // flex-end | 943 // flex-end |
| 940 // left | 944 // left |
| 941 // right | 945 // right |
| 942 true | 946 unsafe |
| 943 safe | 947 safe |
| 944 legacy | 948 legacy |
| 945 | 949 |
| 946 // scroll-behavior | 950 // scroll-behavior |
| 947 // auto | 951 // auto |
| 948 smooth | 952 smooth |
| 949 | 953 |
| 950 // will-change | 954 // will-change |
| 951 // auto | 955 // auto |
| 952 contents | 956 contents |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1039 -webkit-calc | 1043 -webkit-calc |
| 1040 | 1044 |
| 1041 // scroll-snap-type | 1045 // scroll-snap-type |
| 1042 // none | 1046 // none |
| 1043 mandatory | 1047 mandatory |
| 1044 proximity | 1048 proximity |
| 1045 from-image | 1049 from-image |
| 1046 | 1050 |
| 1047 var | 1051 var |
| 1048 -internal-variable-value | 1052 -internal-variable-value |
| OLD | NEW |