| 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>Test decodeAudioData promises</title> | 8 <title>Test decodeAudioData promises</title> |
| 8 </head> | 9 </head> |
| 9 | 10 |
| 10 <body> | 11 <body> |
| 11 <script> | 12 <script> |
| 12 description("Basic tests for decodeAudioData promise."); | 13 description("Basic tests for decodeAudioData promise."); |
| 13 window.jsTestIsAsync = true; | 14 window.jsTestIsAsync = true; |
| 14 | 15 |
| 15 // Use offline context for decoding because we want a fixed know sample rate
, independent of the | 16 // Use offline context for decoding because we want a fixed know sample rate
, independent of the |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 finishJSTest(); | 224 finishJSTest(); |
| 224 done(); | 225 done(); |
| 225 }); | 226 }); |
| 226 | 227 |
| 227 audit.runTasks(); | 228 audit.runTasks(); |
| 228 | 229 |
| 229 successfullyParsed = true; | 230 successfullyParsed = true; |
| 230 </script> | 231 </script> |
| 231 </body> | 232 </body> |
| 232 </html> | 233 </html> |
| OLD | NEW |