Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: Source/core/css/CSSValueKeywords.in

Issue 149363002: Web Animations API: Implement step-middle and steps(x, middle) timing functions. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add comment to timing-functions test re. invalidity of step-middle in CSS Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698