OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../resources/js-test.js"></script> | 4 <script src="../../resources/js-test.js"></script> |
5 <script src="resources/compatibility.js"></script> | 5 <script src="../resources/compatibility.js"></script> |
6 <script src="resources/audit-util.js"></script> | 6 <script src="../resources/audit-util.js"></script> |
7 <script src="resources/audio-testing.js"></script> | 7 <script src="../resources/audio-testing.js"></script> |
8 </head> | 8 </head> |
9 | 9 |
10 <body> | 10 <body> |
11 <script> | 11 <script> |
12 description('Test synchronous graph manipulation with OfflineAudioContext.
suspend() and OfflineAudioContext.resume().'); | 12 description('Test synchronous graph manipulation with OfflineAudioContext.
suspend() and OfflineAudioContext.resume().'); |
13 window.jsTestIsAsync = true; | 13 window.jsTestIsAsync = true; |
14 | 14 |
15 var context; | 15 var context; |
16 var renderQuantum = 128; | 16 var renderQuantum = 128; |
17 var renderDuration = 3; | 17 var renderDuration = 3; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 .beConstantValueOf(1); | 85 .beConstantValueOf(1); |
86 Should('Buffer frame [' + suspendIndex2 + ', ' + endIndex + ')', subarra
y2) | 86 Should('Buffer frame [' + suspendIndex2 + ', ' + endIndex + ')', subarra
y2) |
87 .beConstantValueOf(0); | 87 .beConstantValueOf(0); |
88 } | 88 } |
89 | 89 |
90 successfullyParsed = true; | 90 successfullyParsed = true; |
91 </script> | 91 </script> |
92 | 92 |
93 </body> | 93 </body> |
94 </html> | 94 </html> |
OLD | NEW |