| 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 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 977 "pan-up", | 977 "pan-up", |
| 978 "pan-down", | 978 "pan-down", |
| 979 "manipulation", | 979 "manipulation", |
| 980 "pinch-zoom", | 980 "pinch-zoom", |
| 981 | 981 |
| 982 // justify-items / justify-self | 982 // justify-items / justify-self |
| 983 // auto | 983 // auto |
| 984 // stretch | 984 // stretch |
| 985 // baseline | 985 // baseline |
| 986 "last-baseline", | 986 "last-baseline", |
| 987 "first-baseline", |
| 987 "first", | 988 "first", |
| 988 "last", | 989 "last", |
| 989 // center | 990 // center |
| 990 // start | 991 // start |
| 991 // end | 992 // end |
| 992 "self-start", | 993 "self-start", |
| 993 "self-end", | 994 "self-end", |
| 994 // flex-start | 995 // flex-start |
| 995 // flex-end | 996 // flex-end |
| 996 // left | 997 // left |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1125 // shape | 1126 // shape |
| 1126 // rect | 1127 // rect |
| 1127 // round | 1128 // round |
| 1128 | 1129 |
| 1129 // color-gamut | 1130 // color-gamut |
| 1130 // srgb | 1131 // srgb |
| 1131 "p3", | 1132 "p3", |
| 1132 "rec2020", | 1133 "rec2020", |
| 1133 ], | 1134 ], |
| 1134 } | 1135 } |
| OLD | NEW |