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