| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1028 // flex-start | 1029 // flex-start |
| 1029 // flex-end | 1030 // flex-end |
| 1030 // left | 1031 // left |
| 1031 // right | 1032 // right |
| 1032 true | 1033 true |
| 1033 safe | 1034 safe |
| 1034 | 1035 |
| 1035 // scroll-behavior | 1036 // scroll-behavior |
| 1036 instant | 1037 instant |
| 1037 smooth | 1038 smooth |
| OLD | NEW |