| OLD | NEW |
| 1 { | 1 { |
| 2 // The mode argument is used to limit the keyword to be used only for certain | 2 // The mode argument is used to limit the keyword to be used only for certain |
| 3 // CSSParserModes. Values that have the prefix -internal- are only allowed by | 3 // CSSParserModes. Values that have the prefix -internal- are only allowed by |
| 4 // CSSParserModes listed in allowInternalPropertyAndValue() | 4 // CSSParserModes listed in allowInternalPropertyAndValue() |
| 5 | 5 |
| 6 parameters: { | 6 parameters: { |
| 7 mode: {}, | 7 mode: {}, |
| 8 }, | 8 }, |
| 9 | 9 |
| 10 // | 10 // |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 "space-evenly", | 526 "space-evenly", |
| 527 // stretch | 527 // stretch |
| 528 "unsafe", | 528 "unsafe", |
| 529 "safe", | 529 "safe", |
| 530 | 530 |
| 531 // align-items / align-self | 531 // align-items / align-self |
| 532 // flex-start | 532 // flex-start |
| 533 // flex-end | 533 // flex-end |
| 534 // center | 534 // center |
| 535 // baseline | 535 // baseline |
| 536 // last baseline, |
| 537 // first baseline, |
| 536 // stretch | 538 // stretch |
| 537 | 539 |
| 538 // justify-content | 540 // justify-content |
| 539 // start | 541 // start |
| 540 // end | 542 // end |
| 541 // flex-start | 543 // flex-start |
| 542 // flex-end | 544 // flex-end |
| 543 // center | 545 // center |
| 544 // space-between | 546 // space-between |
| 545 // space-around | 547 // space-around |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 "pan-up", | 977 "pan-up", |
| 976 "pan-down", | 978 "pan-down", |
| 977 "manipulation", | 979 "manipulation", |
| 978 "pinch-zoom", | 980 "pinch-zoom", |
| 979 | 981 |
| 980 // justify-items / justify-self | 982 // justify-items / justify-self |
| 981 // auto | 983 // auto |
| 982 // stretch | 984 // stretch |
| 983 // baseline | 985 // baseline |
| 984 "last-baseline", | 986 "last-baseline", |
| 987 "first", |
| 988 "last", |
| 985 // center | 989 // center |
| 986 // start | 990 // start |
| 987 // end | 991 // end |
| 988 "self-start", | 992 "self-start", |
| 989 "self-end", | 993 "self-end", |
| 990 // flex-start | 994 // flex-start |
| 991 // flex-end | 995 // flex-end |
| 992 // left | 996 // left |
| 993 // right | 997 // right |
| 994 // unsafe | 998 // unsafe |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 // shape | 1125 // shape |
| 1122 // rect | 1126 // rect |
| 1123 // round | 1127 // round |
| 1124 | 1128 |
| 1125 // color-gamut | 1129 // color-gamut |
| 1126 // srgb | 1130 // srgb |
| 1127 "p3", | 1131 "p3", |
| 1128 "rec2020", | 1132 "rec2020", |
| 1129 ], | 1133 ], |
| 1130 } | 1134 } |
| OLD | NEW |