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="../resources/js-test.js"></script> |
10 <script type="text/javascript" src="resources/audio-testing.js"></script> | 10 <script type="text/javascript" src="resources/audio-testing.js"></script> |
11 <script type="text/javascript" src="resources/buffer-loader.js"></script> | 11 <script type="text/javascript" src="resources/buffer-loader.js"></script> |
12 </head> | 12 </head> |
13 | 13 |
14 <body> | 14 <body> |
15 | 15 |
16 <div id="description"></div> | 16 <div id="description"></div> |
17 <div id="console"></div> | 17 <div id="console"></div> |
18 | 18 |
19 <script> | 19 <script> |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 </body> | 113 </body> |
114 </html> | 114 </html> |
OLD | NEW |