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 <div id="target"></div> | 4 <div id="target">x</div> |
5 <script> | 5 <script> |
6 promise_test(function() { | 6 promise_test(function() { |
7 var animation = target.animate({ | 7 var animation = target.animate({ |
8 transform: ['rotate(0deg)', 'rotate(180deg)'], | 8 transform: ['rotate(0deg)', 'rotate(180deg)'], |
9 }, { | 9 }, { |
10 duration: 100000, | 10 duration: 100000, |
11 delay: 1, | 11 delay: 1, |
12 }); | 12 }); |
13 return animation.ready.then(() => { | 13 return animation.ready.then(() => { |
14 assert_true(internals.isCompositedAnimation(animation)); | 14 assert_true(internals.isCompositedAnimation(animation)); |
15 }); | 15 }); |
16 }, 'element.animate() with a positive delay should run compositor animations'); | 16 }, 'element.animate() with a positive delay should run compositor animations'); |
17 </script> | 17 </script> |
OLD | NEW |