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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/events/animation-immediate-start-event-after-ondemand-update.html

Issue 2976603002: Move animation event tests to subdirectory (Closed)
Patch Set: Created 3 years, 5 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 <!doctype html> 1 <!doctype html>
2 <style> 2 <style>
3 .animated { 3 .animated {
4 animation: test 10ms; 4 animation: test 10ms;
5 animation-delay: -10ms; 5 animation-delay: -10ms;
6 } 6 }
7 @keyframes test { 7 @keyframes test {
8 0% {} 8 0% {}
9 } 9 }
10 </style> 10 </style>
(...skipping 14 matching lines...) Expand all
25 if (window.testRunner) 25 if (window.testRunner)
26 testRunner.notifyDone(); 26 testRunner.notifyDone();
27 }); 27 });
28 requestAnimationFrame(function() { 28 requestAnimationFrame(function() {
29 setTimeout(function() { 29 setTimeout(function() {
30 getComputedStyle(test).left; 30 getComputedStyle(test).left;
31 }); 31 });
32 }); 32 });
33 } 33 }
34 </script> 34 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698