| 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 event handler callback from OfflineAudioContext.resume()
and OfflineAudioContext.suspend().'); | 12 description('Test event handler callback from OfflineAudioContext.resume()
and OfflineAudioContext.suspend().'); |
| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 69 |
| 69 context.startRendering(); | 70 context.startRendering(); |
| 70 } | 71 } |
| 71 | 72 |
| 72 runTest(); | 73 runTest(); |
| 73 successfullyParsed = true; | 74 successfullyParsed = true; |
| 74 </script> | 75 </script> |
| 75 | 76 |
| 76 </body> | 77 </body> |
| 77 </html> | 78 </html> |
| OLD | NEW |