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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/prefixed/animation-events-unprefixed-03.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 unprefixed animation events are correctly fired when using h tml event listeners (only unprefixed should be fired).</title> 4 <title>Tests that unprefixed animation events are correctly fired when using h tml event listeners (only unprefixed should be fired).</title>
5 <style> 5 <style>
6 #box { 6 #box {
7 position: relative; 7 position: relative;
8 left: 100px; 8 left: 100px;
9 top: 10px; 9 top: 10px;
10 height: 100px; 10 height: 100px;
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 }); 58 });
59 } 59 }
60 </script> 60 </script>
61 </head> 61 </head>
62 <body> 62 <body>
63 Tests that unprefixed animation events are correctly fired when using html event listeners (only unprefixed should be fired). 63 Tests that unprefixed animation events are correctly fired when using html event listeners (only unprefixed should be fired).
64 <pre id="result">FAIL: No animation events received</pre> 64 <pre id="result">FAIL: No animation events received</pre>
65 <div id="box" onwebkitanimationstart="recordPrefixedEvent();" onwebkitanimatione nd="recordPrefixedEvent();" onwebkitanimationiteration="recordPrefixedEvent();" onanimationstart="recordAnimationStart();" onanimationend="recordAnimationEnd(); " onanimationiteration="recordAnimationIteration();" class="animate"></div> 65 <div id="box" onwebkitanimationstart="recordPrefixedEvent();" onwebkitanimatione nd="recordPrefixedEvent();" onwebkitanimationiteration="recordPrefixedEvent();" onanimationstart="recordAnimationStart();" onanimationend="recordAnimationEnd(); " onanimationiteration="recordAnimationIteration();" class="animate"></div>
66 </body> 66 </body>
67 </html> 67 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698