| 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 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 "running", | 745 "running", |
| 746 "paused", | 746 "paused", |
| 747 | 747 |
| 748 // | 748 // |
| 749 // transform-style | 749 // transform-style |
| 750 // | 750 // |
| 751 "flat", | 751 "flat", |
| 752 "preserve-3d", | 752 "preserve-3d", |
| 753 | 753 |
| 754 // | 754 // |
| 755 // transform-box |
| 756 // |
| 757 // border-box |
| 758 "fill-box", |
| 759 "view-box", |
| 760 |
| 761 // |
| 755 // transition-timing-function | 762 // transition-timing-function |
| 756 // animation-timing-function | 763 // animation-timing-function |
| 757 // | 764 // |
| 758 "ease", | 765 "ease", |
| 759 "linear", | 766 "linear", |
| 760 "ease-in", | 767 "ease-in", |
| 761 "ease-out", | 768 "ease-out", |
| 762 "ease-in-out", | 769 "ease-in-out", |
| 763 "step-start", | 770 "step-start", |
| 764 "step-middle", | 771 "step-middle", |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1126 // shape | 1133 // shape |
| 1127 // rect | 1134 // rect |
| 1128 // round | 1135 // round |
| 1129 | 1136 |
| 1130 // color-gamut | 1137 // color-gamut |
| 1131 // srgb | 1138 // srgb |
| 1132 "p3", | 1139 "p3", |
| 1133 "rec2020", | 1140 "rec2020", |
| 1134 ], | 1141 ], |
| 1135 } | 1142 } |
| OLD | NEW |