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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/prefixed/animation-events-prefixed-04.html

Issue 2970883003: Separate out animations tests with prefixing (Closed)
Patch Set: Rebaseline virtual/threaded version of test too 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 <html> 2 <html>
3 <head> 3 <head>
4 <title>Tests that custom events with prefixed animations names are correctly d ispatched.</title> 4 <title>Tests that custom events with prefixed animations names are correctly d ispatched.</title>
5 <script> 5 <script>
6 if (window.testRunner) { 6 if (window.testRunner) {
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 testRunner.waitUntilDone(); 8 testRunner.waitUntilDone();
9 } 9 }
10 10
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 custom.initCustomEvent('webkitAnimationStart', true, true, null); 47 custom.initCustomEvent('webkitAnimationStart', true, true, null);
48 document.dispatchEvent(custom); 48 document.dispatchEvent(custom);
49 custom = document.createEvent('CustomEvent'); 49 custom = document.createEvent('CustomEvent');
50 custom.initCustomEvent('webkitAnimationIteration', true, true, null); 50 custom.initCustomEvent('webkitAnimationIteration', true, true, null);
51 document.dispatchEvent(custom); 51 document.dispatchEvent(custom);
52 custom = document.createEvent('CustomEvent'); 52 custom = document.createEvent('CustomEvent');
53 custom.initCustomEvent('webkitAnimationEnd', true, true, null); 53 custom.initCustomEvent('webkitAnimationEnd', true, true, null);
54 document.dispatchEvent(custom); 54 document.dispatchEvent(custom);
55 </script> 55 </script>
56 </html> 56 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698