| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 Test up mixing from mono to stereo. | 4 Test up mixing from mono to stereo. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <script type="text/javascript" src="resources/audio-testing.js"></script> | 9 <script src="resources/audit-util.js"></script> |
| 10 <script src="resources/audio-testing.js"></script> |
| 10 <script type="text/javascript" src="resources/mix-testing.js"></script> | 11 <script type="text/javascript" src="resources/mix-testing.js"></script> |
| 11 </head> | 12 </head> |
| 12 <body> | 13 <body> |
| 13 | 14 |
| 14 <script> | 15 <script> |
| 15 | 16 |
| 16 function runTest() { | 17 function runTest() { |
| 17 if (!window.testRunner) | 18 if (!window.testRunner) |
| 18 return; | 19 return; |
| 19 | 20 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 34 | 35 |
| 35 context.oncomplete = finishAudioTest; | 36 context.oncomplete = finishAudioTest; |
| 36 context.startRendering(); | 37 context.startRendering(); |
| 37 } | 38 } |
| 38 | 39 |
| 39 runTest(); | 40 runTest(); |
| 40 </script> | 41 </script> |
| 41 | 42 |
| 42 </body> | 43 </body> |
| 43 </html> | 44 </html> |
| OLD | NEW |