| 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 AudioBuffer.getChannelData() Returns the Same Object</title> | 8 <title>Test AudioBuffer.getChannelData() Returns the Same Object</title> |
| 9 </head> | 9 </head> |
| 10 | 10 |
| 11 <body> | 11 <body> |
| 12 <script> | 12 <script> |
| 13 description("Test AudioBuffer.getChannelData() Returns the Same Object"); | 13 description("Test AudioBuffer.getChannelData() Returns the Same Object"); |
| 14 window.jsTestIsAsync = true; | 14 window.jsTestIsAsync = true; |
| 15 | 15 |
| 16 var sampleRate = 48000; | 16 var sampleRate = 48000; |
| 17 var renderDuration = 0.5; | 17 var renderDuration = 0.5; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 audit.defineTask("finish", function (done) { | 79 audit.defineTask("finish", function (done) { |
| 80 finishJSTest(); | 80 finishJSTest(); |
| 81 done(); | 81 done(); |
| 82 }); | 82 }); |
| 83 | 83 |
| 84 audit.runTasks(); | 84 audit.runTasks(); |
| 85 </script> | 85 </script> |
| 86 </body> | 86 </body> |
| 87 </html> | 87 </html> |
| OLD | NEW |