| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
| 3 <title>KeyframeEffectReadOnly getComputedTiming() tests</title> | 3 <title>KeyframeEffectReadOnly getComputedTiming() tests</title> |
| 4 <link rel="help" href="https://w3c.github.io/web-animations/#dom-animationeffect
readonly-getcomputedtiming"> | 4 <link rel="help" href="https://w3c.github.io/web-animations/#dom-animationeffect
readonly-getcomputedtiming"> |
| 5 <link rel="author" title="Boris Chiou" href="mailto:boris.chiou@gmail.com"> | 5 <link rel="author" title="Boris Chiou" href="mailto:boris.chiou@gmail.com"> |
| 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 <body> | 9 <body> |
| 10 <div id="log"></div> | 10 <div id="log"></div> |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 206 |
| 207 assert_equals(effect.getComputedTiming().endTime, | 207 assert_equals(effect.getComputedTiming().endTime, |
| 208 stest.expected); | 208 stest.expected); |
| 209 | 209 |
| 210 }, "getComputedTiming().endTime for " + stest.desc); | 210 }, "getComputedTiming().endTime for " + stest.desc); |
| 211 }); | 211 }); |
| 212 | 212 |
| 213 done(); | 213 done(); |
| 214 </script> | 214 </script> |
| 215 </body> | 215 </body> |
| OLD | NEW |