OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="testharness/testharness.js"></script> | 2 <script src="testharness/testharness.js"></script> |
3 <script src="testharness/testharnessreport.js"></script> | 3 <script src="testharness/testharnessreport.js"></script> |
4 <script src="resources/keyframes-test.js"></script> | 4 <script src="resources/keyframes-test.js"></script> |
5 <script> | 5 <script> |
6 test(function() { | 6 test(function() { |
7 assertAnimationStyles([ | 7 assertAnimationStyles([ |
8 {opacity: '0.5', left: '50px'}, | 8 {opacity: '0.5', left: '50px'}, |
9 {opacity: '0', left: '0px', offset: null}, | 9 {opacity: '0', left: '0px', offset: null}, |
10 {opacity: '0.75', left: '75px', offset: null}, | 10 {opacity: '0.75', left: '75px', offset: null}, |
(...skipping 21 matching lines...) Expand all Loading... |
32 'element.animate() with null offsets specified', | 32 'element.animate() with null offsets specified', |
33 { | 33 { |
34 help: 'http://dev.w3.org/fxtf/web-animations/#the-keyframe-dictionary', | 34 help: 'http://dev.w3.org/fxtf/web-animations/#the-keyframe-dictionary', |
35 assert: [ | 35 assert: [ |
36 'element.animate() should start an animation when keyframes are specified wi
th', | 36 'element.animate() should start an animation when keyframes are specified wi
th', |
37 'null offsets. The behaviour should be identical to not specifying the offse
ts.', | 37 'null offsets. The behaviour should be identical to not specifying the offse
ts.', |
38 ], | 38 ], |
39 author: 'Alan Cutter', | 39 author: 'Alan Cutter', |
40 }); | 40 }); |
41 </script> | 41 </script> |
OLD | NEW |