OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <!-- | 3 <!-- |
4 Tests that that we can merge two mono streams into a stereo stream. | 4 Tests that that we can merge two mono streams into a stereo stream. |
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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 bufferSource2.noteOn(0); | 103 bufferSource2.noteOn(0); |
104 | 104 |
105 context.oncomplete = checkResult; | 105 context.oncomplete = checkResult; |
106 context.startRendering(); | 106 context.startRendering(); |
107 } | 107 } |
108 | 108 |
109 runTest(); | 109 runTest(); |
110 | 110 |
111 </script> | 111 </script> |
112 | 112 |
113 <script src="../fast/js/resources/js-test-post.js"></script> | |
114 </body> | 113 </body> |
115 </html> | 114 </html> |
OLD | NEW |