| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test AudioContext.close()</title> | 4 <title>Test AudioContext.close()</title> |
| 5 <script src="../resources/js-test.js"></script> | 5 <script src="../../resources/js-test.js"></script> |
| 6 <script src="resources/compatibility.js"></script> | 6 <script src="../resources/compatibility.js"></script> |
| 7 <script src="resources/audit-util.js"></script> | 7 <script src="../resources/audit-util.js"></script> |
| 8 <script src="resources/audio-testing.js"></script> | 8 <script src="../resources/audio-testing.js"></script> |
| 9 </head> | 9 </head> |
| 10 | 10 |
| 11 <body> | 11 <body> |
| 12 <script> | 12 <script> |
| 13 description("Basic functionality test of closing an AudioContext"); | 13 description("Basic functionality test of closing an AudioContext"); |
| 14 window.jsTestIsAsync = true; | 14 window.jsTestIsAsync = true; |
| 15 | 15 |
| 16 var context; | 16 var context; |
| 17 var destination; | 17 var destination; |
| 18 var offline; | 18 var offline; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 done(); | 126 done(); |
| 127 finishJSTest(); | 127 finishJSTest(); |
| 128 }); | 128 }); |
| 129 | 129 |
| 130 audit.runTasks(); | 130 audit.runTasks(); |
| 131 | 131 |
| 132 successfullyParsed = true; | 132 successfullyParsed = true; |
| 133 </script> | 133 </script> |
| 134 </body> | 134 </body> |
| 135 </html> | 135 </html> |
| OLD | NEW |