| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <head> |
| 3 <script src="../resources/js-test.js"></script> | 3 <script src="../resources/js-test.js"></script> |
| 4 <script src="resources/audit-util.js"></script> |
| 4 <script src="resources/audio-testing.js"></script> | 5 <script src="resources/audio-testing.js"></script> |
| 5 <script src="resources/compatibility.js"></script> | 6 <script src="resources/compatibility.js"></script> |
| 6 <script src="resources/audiobuffersource-testing.js"></script> | 7 <script src="resources/audiobuffersource-testing.js"></script> |
| 7 <script> | 8 <script> |
| 8 var context; | 9 var context; |
| 9 var source; | 10 var source; |
| 10 | 11 |
| 11 function runTest() | 12 function runTest() |
| 12 { | 13 { |
| 13 if (window.testRunner) { | 14 if (window.testRunner) { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 30 source.start(0); | 31 source.start(0); |
| 31 context.startRendering(); | 32 context.startRendering(); |
| 32 } | 33 } |
| 33 </script> | 34 </script> |
| 34 | 35 |
| 35 </head> | 36 </head> |
| 36 <body onload="runTest()"> | 37 <body onload="runTest()"> |
| 37 <div>Tests that AudioBufferSourceNode calls its onended EventListener.</div> | 38 <div>Tests that AudioBufferSourceNode calls its onended EventListener.</div> |
| 38 <div id="console"></div> | 39 <div id="console"></div> |
| 39 </body> | 40 </body> |
| OLD | NEW |