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