OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Test AudioContext.suspend() and AudioContext.resume()</title> | 4 <title>Test AudioContext.suspend() and AudioContext.resume()</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/audio-testing.js"></script> | 7 <script src="resources/audio-testing.js"></script> |
8 </head> | 8 </head> |
9 | 9 |
10 <body> | 10 <body> |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 }); | 133 }); |
134 }); | 134 }); |
135 | 135 |
136 audit.defineTask('finish-test', function (done) { | 136 audit.defineTask('finish-test', function (done) { |
137 done(); | 137 done(); |
138 finishJSTest(); | 138 finishJSTest(); |
139 }); | 139 }); |
140 | 140 |
141 audit.runTasks( | 141 audit.runTasks( |
142 'test-suspend', | 142 'test-suspend', |
143 'test-resume', | 143 // 'test-resume', |
144 'test-after-close', | 144 // 'test-after-close', |
145 'finish-test' | 145 'finish-test' |
146 ); | 146 ); |
147 | 147 |
148 successfullyParsed = true; | 148 successfullyParsed = true; |
149 </script> | 149 </script> |
150 </body> | 150 </body> |
151 </html> | 151 </html> |
OLD | NEW |