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