| 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> | 11 <script src="resources/compatibility.js"></script> |
| 12 <script type="text/javascript" src="resources/audio-testing.js"></script> | 12 <script src="resources/audit-util.js"></script> |
| 13 <script src="resources/audio-testing.js"></script> |
| 13 <script type="text/javascript" src="resources/buffer-loader.js"></script> | 14 <script type="text/javascript" src="resources/buffer-loader.js"></script> |
| 14 </head> | 15 </head> |
| 15 | 16 |
| 16 <body> | 17 <body> |
| 17 | 18 |
| 18 <div id="description"></div> | 19 <div id="description"></div> |
| 19 <div id="console"></div> | 20 <div id="console"></div> |
| 20 | 21 |
| 21 <script> | 22 <script> |
| 22 description("Tests sample-accurate scheduling."); | 23 description("Tests sample-accurate scheduling."); |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 context.oncomplete = checkSampleAccuracy; | 126 context.oncomplete = checkSampleAccuracy; |
| 126 context.startRendering(); | 127 context.startRendering(); |
| 127 } | 128 } |
| 128 | 129 |
| 129 runTest(); | 130 runTest(); |
| 130 | 131 |
| 131 </script> | 132 </script> |
| 132 | 133 |
| 133 </body> | 134 </body> |
| 134 </html> | 135 </html> |
| OLD | NEW |