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

Side by Side Diff: LayoutTests/animations/animations-parsing-expected.txt

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: Merged patch into fresh branch (to avoid scary rebase) Created 6 years, 9 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 Test the parsing and the computed style values of the animations properties. 1 Test the parsing and the computed style values of the animations properties.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 Valid animation-name values. 6 Valid animation-name values.
7 PASS computedStyle.animationName is 'none' 7 PASS computedStyle.animationName is 'none'
8 PASS computedStyle.webkitAnimationName is 'none' 8 PASS computedStyle.webkitAnimationName is 'none'
9 PASS Object.keys(style).indexOf('animationName') is not -1 9 PASS Object.keys(style).indexOf('animationName') is not -1
10 PASS Object.keys(style).indexOf('webkitAnimationName') is not -1 10 PASS Object.keys(style).indexOf('webkitAnimationName') is not -1
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 PASS style.webkitAnimationTimingFunction is '' 242 PASS style.webkitAnimationTimingFunction is ''
243 PASS computedStyle.webkitAnimationTimingFunction is 'ease' 243 PASS computedStyle.webkitAnimationTimingFunction is 'ease'
244 PASS style.animationTimingFunction is '' 244 PASS style.animationTimingFunction is ''
245 PASS computedStyle.animationTimingFunction is 'ease' 245 PASS computedStyle.animationTimingFunction is 'ease'
246 PASS style.webkitAnimationTimingFunction is '' 246 PASS style.webkitAnimationTimingFunction is ''
247 PASS computedStyle.webkitAnimationTimingFunction is 'ease' 247 PASS computedStyle.webkitAnimationTimingFunction is 'ease'
248 PASS style.animationTimingFunction is '' 248 PASS style.animationTimingFunction is ''
249 PASS computedStyle.animationTimingFunction is 'ease' 249 PASS computedStyle.animationTimingFunction is 'ease'
250 PASS style.webkitAnimationTimingFunction is '' 250 PASS style.webkitAnimationTimingFunction is ''
251 PASS computedStyle.webkitAnimationTimingFunction is 'ease' 251 PASS computedStyle.webkitAnimationTimingFunction is 'ease'
252 PASS style.animationTimingFunction is 'step-middle'
253 PASS computedStyle.animationTimingFunction is 'ease'
254 PASS style.webkitAnimationTimingFunction is 'step-middle'
255 PASS computedStyle.webkitAnimationTimingFunction is 'ease'
256 PASS style.animationTimingFunction is 'steps(5, middle)'
257 PASS computedStyle.animationTimingFunction is 'ease'
258 PASS style.webkitAnimationTimingFunction is 'steps(5, middle)'
259 PASS computedStyle.webkitAnimationTimingFunction is 'ease'
252 Valid animation-delay values. 260 Valid animation-delay values.
253 PASS computedStyle.animationDelay is '0s' 261 PASS computedStyle.animationDelay is '0s'
254 PASS computedStyle.webkitAnimationDelay is '0s' 262 PASS computedStyle.webkitAnimationDelay is '0s'
255 PASS Object.keys(style).indexOf('animationDelay') is not -1 263 PASS Object.keys(style).indexOf('animationDelay') is not -1
256 PASS Object.keys(style).indexOf('webkitAnimationDelay') is not -1 264 PASS Object.keys(style).indexOf('webkitAnimationDelay') is not -1
257 PASS style.animationDelay is '0s' 265 PASS style.animationDelay is '0s'
258 PASS computedStyle.animationDelay is '0s' 266 PASS computedStyle.animationDelay is '0s'
259 PASS style.webkitAnimationDelay is '0s' 267 PASS style.webkitAnimationDelay is '0s'
260 PASS computedStyle.webkitAnimationDelay is '0s' 268 PASS computedStyle.webkitAnimationDelay is '0s'
261 PASS style.animationDelay is '5s' 269 PASS style.animationDelay is '5s'
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 PASS style.webkitAnimation is '' 694 PASS style.webkitAnimation is ''
687 PASS computedStyle.webkitAnimation is 'none 0s ease 0s 1 normal none running' 695 PASS computedStyle.webkitAnimation is 'none 0s ease 0s 1 normal none running'
688 PASS style.animation is '' 696 PASS style.animation is ''
689 PASS computedStyle.animation is 'none 0s ease 0s 1 normal none running' 697 PASS computedStyle.animation is 'none 0s ease 0s 1 normal none running'
690 PASS style.webkitAnimation is '' 698 PASS style.webkitAnimation is ''
691 PASS computedStyle.webkitAnimation is 'none 0s ease 0s 1 normal none running' 699 PASS computedStyle.webkitAnimation is 'none 0s ease 0s 1 normal none running'
692 PASS successfullyParsed is true 700 PASS successfullyParsed is true
693 701
694 TEST COMPLETE 702 TEST COMPLETE
695 703
OLDNEW
« no previous file with comments | « LayoutTests/animations/animations-parsing.html ('k') | LayoutTests/animations/timing-functions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698