| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
| 3 <title>Effect-level easing tests</title> | 3 <title>Effect-level easing tests</title> |
| 4 <link rel="help" href="http://w3c.github.io/web-animations/#calculating-the-tran
sformed-time"> | 4 <link rel="help" href="http://w3c.github.io/web-animations/#calculating-the-tran
sformed-time"> |
| 5 <link rel="author" title="Hiroyuki Ikezoe" href="mailto:hiikezoe@mozilla-japan.o
rg"> | 5 <link rel="author" title="Hiroyuki Ikezoe" href="mailto:hiikezoe@mozilla-japan.o
rg"> |
| 6 <script src="../../../../../resources/testharness.js"></script> | 6 <script src="/resources/testharness.js"></script> |
| 7 <script src="../../../../../resources/testharnessreport.js"></script> | 7 <script src="/resources/testharnessreport.js"></script> |
| 8 <script src="../../testcommon.js"></script> | 8 <script src="../../testcommon.js"></script> |
| 9 <script src="../../resources/effect-easing-tests.js"></script> | 9 <script src="../../resources/effect-easing-tests.js"></script> |
| 10 <body> | 10 <body> |
| 11 <div id="log"></div> | 11 <div id="log"></div> |
| 12 <div id="target"></div> | 12 <div id="target"></div> |
| 13 <script> | 13 <script> |
| 14 "use strict"; | 14 "use strict"; |
| 15 | 15 |
| 16 function assert_style_left_at(animation, time, easingFunction) { | 16 function assert_style_left_at(animation, time, easingFunction) { |
| 17 animation.currentTime = time; | 17 animation.currentTime = time; |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 assert_equals(getComputedStyle(target).width, | 664 assert_equals(getComputedStyle(target).width, |
| 665 condition.width, | 665 condition.width, |
| 666 'Progress at ' + animation.currentTime + 'ms'); | 666 'Progress at ' + animation.currentTime + 'ms'); |
| 667 } | 667 } |
| 668 }); | 668 }); |
| 669 }, options.description); | 669 }, options.description); |
| 670 }); | 670 }); |
| 671 | 671 |
| 672 </script> | 672 </script> |
| 673 </body> | 673 </body> |
| OLD | NEW |