| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 This is a very basic test to make sure testRunner.setAudioData() works correctly
. | 4 This is a very basic test to make sure testRunner.setAudioData() works correctly
. |
| 5 It generates a 2 seconds long stereo result @44.1KHz | 5 It generates a 2 seconds long stereo result @44.1KHz |
| 6 The left channel will be a 880Hz tone, while the right will be 440Hz. | 6 The left channel will be a 880Hz tone, while the right will be 440Hz. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 <html> | 9 <html> |
| 10 <head> | 10 <head> |
| 11 <script src="../fast/js/resources/js-test-pre.js"></script> | 11 <script src="../resources/js-test.js"></script> |
| 12 <script type="text/javascript" src="resources/audio-testing.js"></script> | 12 <script type="text/javascript" src="resources/audio-testing.js"></script> |
| 13 | 13 |
| 14 </head> | 14 </head> |
| 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 basic audio test infrastructure: specifically testRunner.setA
udioData()"); | 21 description("Tests basic audio test infrastructure: specifically testRunner.setA
udioData()"); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 51 } | 51 } |
| 52 | 52 |
| 53 runTest(); | 53 runTest(); |
| 54 | 54 |
| 55 </script> | 55 </script> |
| 56 | 56 |
| 57 | 57 |
| 58 <body> | 58 <body> |
| 59 </body> | 59 </body> |
| 60 </html> | 60 </html> |
| OLD | NEW |