| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../resources/js-test.js"></script> |
| 4 <script src="resources/compatibility.js"></script> | 5 <script src="resources/compatibility.js"></script> |
| 5 <script src="resources/audio-testing.js"></script> | 6 <script src="resources/audio-testing.js"></script> |
| 6 <script src="resources/audioparam-testing.js"></script> | 7 <script src="resources/audioparam-testing.js"></script> |
| 7 <script src="../resources/js-test.js"></script> | |
| 8 <title>Test Sampling for SetTargetAtTime</title> | 8 <title>Test Sampling for SetTargetAtTime</title> |
| 9 </head> | 9 </head> |
| 10 | 10 |
| 11 <body> | 11 <body> |
| 12 <script> | 12 <script> |
| 13 description("Test Sampling of SetTargetAtTime"); | 13 description("Test Sampling of SetTargetAtTime"); |
| 14 | 14 |
| 15 window.jsTestIsAsync = true; | 15 window.jsTestIsAsync = true; |
| 16 // Some slow sample rate, but otherwise arbitrary. | 16 // Some slow sample rate, but otherwise arbitrary. |
| 17 var sampleRate = 12800; | 17 var sampleRate = 12800; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 audit.defineTask("finish", function (done) { | 93 audit.defineTask("finish", function (done) { |
| 94 finishJSTest(); | 94 finishJSTest(); |
| 95 done(); | 95 done(); |
| 96 }); | 96 }); |
| 97 | 97 |
| 98 audit.runTasks(); | 98 audit.runTasks(); |
| 99 successfullyParsed = true; | 99 successfullyParsed = true; |
| 100 </script> | 100 </script> |
| 101 </body> | 101 </body> |
| 102 </html> | 102 </html> |
| OLD | NEW |