| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <meta charset=utf-8> | 2 <meta charset=utf-8> |
| 3 <title>Simple iteration progress tests</title> | 3 <title>Simple iteration progress tests</title> |
| 4 <link rel="help" | 4 <link rel="help" |
| 5 href="https://w3c.github.io/web-animations/#simple-iteration-progress"> | 5 href="https://w3c.github.io/web-animations/#simple-iteration-progress"> |
| 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> |
| 11 <script> | 11 <script> |
| 12 'use strict'; | 12 'use strict'; |
| 13 | 13 |
| 14 function executeTests(tests, description) { | 14 function executeTests(tests, description) { |
| 15 tests.forEach(function(currentTest) { | 15 tests.forEach(function(currentTest) { |
| 16 var testParams = ''; | 16 var testParams = ''; |
| 17 for (var attr in currentTest.input) { | 17 for (var attr in currentTest.input) { |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 } | 426 } |
| 427 ]; | 427 ]; |
| 428 | 428 |
| 429 executeTests(gTests_zero_iterations, "Test zero iterations:"); | 429 executeTests(gTests_zero_iterations, "Test zero iterations:"); |
| 430 executeTests(gTests_integer_iterations, "Test integer iterations:"); | 430 executeTests(gTests_integer_iterations, "Test integer iterations:"); |
| 431 executeTests(gTests_fractional_iterations, "Test fractional iterations:"); | 431 executeTests(gTests_fractional_iterations, "Test fractional iterations:"); |
| 432 executeTests(gTests_infinity_iterations, "Test infinity iterations:"); | 432 executeTests(gTests_infinity_iterations, "Test infinity iterations:"); |
| 433 | 433 |
| 434 </script> | 434 </script> |
| 435 </body> | 435 </body> |
| OLD | NEW |