| 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 // | 772 // |
| 773 // CSS_PROP__WEBKIT_TRANSITION_TIMING_FUNCTION | 773 // CSS_PROP__WEBKIT_TRANSITION_TIMING_FUNCTION |
| 774 // CSS_PROP__WEBKIT_ANIMATION_TIMING_FUNCTION | 774 // CSS_PROP__WEBKIT_ANIMATION_TIMING_FUNCTION |
| 775 // | 775 // |
| 776 ease | 776 ease |
| 777 linear | 777 linear |
| 778 ease-in | 778 ease-in |
| 779 ease-out | 779 ease-out |
| 780 ease-in-out | 780 ease-in-out |
| 781 step-start | 781 step-start |
| 782 step-middle |
| 782 step-end | 783 step-end |
| 783 | 784 |
| 784 // | 785 // |
| 785 // CSS_PROP_ZOOM | 786 // CSS_PROP_ZOOM |
| 786 // | 787 // |
| 787 document | 788 document |
| 788 reset | 789 reset |
| 789 | 790 |
| 790 // | 791 // |
| 791 // CSS_PROP_USER_ZOOM | 792 // CSS_PROP_USER_ZOOM |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 // flex-start | 1026 // flex-start |
| 1026 // flex-end | 1027 // flex-end |
| 1027 // left | 1028 // left |
| 1028 // right | 1029 // right |
| 1029 true | 1030 true |
| 1030 safe | 1031 safe |
| 1031 | 1032 |
| 1032 // scroll-behavior | 1033 // scroll-behavior |
| 1033 instant | 1034 instant |
| 1034 smooth | 1035 smooth |
| OLD | NEW |