| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 Tests that AudioChannelSplitter works correctly. | 4 Tests that AudioChannelSplitter works correctly. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <script src="../fast/js/resources/js-test-pre.js"></script> | 9 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 10 <script type="text/javascript" src="resources/audio-testing.js"></script> | 10 <script type="text/javascript" src="resources/audio-testing.js"></script> |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 sourceNode.noteOn(0); | 150 sourceNode.noteOn(0); |
| 151 | 151 |
| 152 context.oncomplete = checkResult; | 152 context.oncomplete = checkResult; |
| 153 context.startRendering(); | 153 context.startRendering(); |
| 154 } | 154 } |
| 155 | 155 |
| 156 runTest(); | 156 runTest(); |
| 157 | 157 |
| 158 </script> | 158 </script> |
| 159 | 159 |
| 160 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 161 </body> | 160 </body> |
| 162 </html> | 161 </html> |
| OLD | NEW |