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