| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 Tests that we are able to schedule a series of notes to playback with sample-acc
uracy. | 4 Tests that we are able to schedule a series of notes to playback with sample-acc
uracy. |
| 5 We use an impulse so we can tell exactly where the rendering is happening. | 5 We use an impulse so we can tell exactly where the rendering is happening. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <script src="../../resources/js-test.js"></script> | 10 <script src="../../resources/js-test.js"></script> |
| 11 <script src="../resources/compatibility.js"></script> | |
| 12 <script src="../resources/audit-util.js"></script> | 11 <script src="../resources/audit-util.js"></script> |
| 13 <script src="../resources/audio-testing.js"></script> | 12 <script src="../resources/audio-testing.js"></script> |
| 14 <script type="text/javascript" src="../resources/buffer-loader.js"></script> | 13 <script type="text/javascript" src="../resources/buffer-loader.js"></script> |
| 15 </head> | 14 </head> |
| 16 | 15 |
| 17 <body> | 16 <body> |
| 18 | 17 |
| 19 <div id="description"></div> | 18 <div id="description"></div> |
| 20 <div id="console"></div> | 19 <div id="console"></div> |
| 21 | 20 |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 context.oncomplete = checkSampleAccuracy; | 125 context.oncomplete = checkSampleAccuracy; |
| 127 context.startRendering(); | 126 context.startRendering(); |
| 128 } | 127 } |
| 129 | 128 |
| 130 runTest(); | 129 runTest(); |
| 131 | 130 |
| 132 </script> | 131 </script> |
| 133 | 132 |
| 134 </body> | 133 </body> |
| 135 </html> | 134 </html> |
| OLD | NEW |