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="../resources/js-test.js"></script> | 9 <script src="../../resources/js-test.js"></script> |
10 <script src="resources/compatibility.js"></script> | 10 <script src="../resources/compatibility.js"></script> |
11 <script src="resources/audit-util.js"></script> | 11 <script src="../resources/audit-util.js"></script> |
12 <script src="resources/audio-testing.js"></script> | 12 <script src="../resources/audio-testing.js"></script> |
13 </head> | 13 </head> |
14 | 14 |
15 <body> | 15 <body> |
16 | 16 |
17 <div id="description"></div> | 17 <div id="description"></div> |
18 <div id="console"></div> | 18 <div id="console"></div> |
19 | 19 |
20 <script> | 20 <script> |
21 description("Tests AudioChannelSplitter."); | 21 description("Tests AudioChannelSplitter."); |
22 | 22 |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 context.oncomplete = checkResult; | 154 context.oncomplete = checkResult; |
155 context.startRendering(); | 155 context.startRendering(); |
156 } | 156 } |
157 | 157 |
158 runTest(); | 158 runTest(); |
159 | 159 |
160 </script> | 160 </script> |
161 | 161 |
162 </body> | 162 </body> |
163 </html> | 163 </html> |
OLD | NEW |