OLD | NEW |
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> |
OLD | NEW |