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

Side by Side Diff: third_party/WebKit/LayoutTests/animations/events/empty-keyframe-triggers.event.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 <script src="../resources/testharness.js"></script> 2 <script src="../../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script> 3 <script src="../../resources/testharnessreport.js"></script>
4 <style> 4 <style>
5 @keyframes anim { } 5 @keyframes anim { }
6 #target { animation: anim; } 6 #target { animation: anim; }
7 </style> 7 </style>
8 <div id="target"></div> 8 <div id="target"></div>
9 <script> 9 <script>
10 var test1 = async_test('Check whether the animationstart is fired for an empty @keyframe block'); 10 var test1 = async_test('Check whether the animationstart is fired for an empty @keyframe block');
11 target.addEventListener('animationstart', function(event) { 11 target.addEventListener('animationstart', function(event) {
12 test1.done(); 12 test1.done();
13 }); 13 });
14 </script> 14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698