| 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 <title>OfflineAudioContext.startRendering Promise with oncomplete</title> | 8 <title>OfflineAudioContext.startRendering Promise with oncomplete</title> |
| 8 </head> | 9 </head> |
| 9 | 10 |
| 10 <body> | 11 <body> |
| 11 <script> | 12 <script> |
| 12 description("Test OfflineAudioContext.startRendering Promise with oncomple
te"); | 13 description("Test OfflineAudioContext.startRendering Promise with oncomple
te"); |
| 13 | 14 |
| 14 var context; | 15 var context; |
| 15 var promise; | 16 var promise; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 promise = context.startRendering(); | 64 promise = context.startRendering(); |
| 64 | 65 |
| 65 } | 66 } |
| 66 | 67 |
| 67 runTest(); | 68 runTest(); |
| 68 successfullyParsed = true; | 69 successfullyParsed = true; |
| 69 </script> | 70 </script> |
| 70 | 71 |
| 71 </body> | 72 </body> |
| 72 </html> | 73 </html> |
| OLD | NEW |