| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>Test AudioContextOptions</title> | 4 <title>Test AudioContextOptions</title> |
| 5 <script src="../resources/testharness.js"></script> | 5 <script src="../../resources/testharness.js"></script> |
| 6 <script src="../resources/testharnessreport.js"></script> | 6 <script src="../../resources/testharnessreport.js"></script> |
| 7 <script src="resources/audit.js"></script> | 7 <script src="../resources/audit.js"></script> |
| 8 </head> | 8 </head> |
| 9 | 9 |
| 10 <body> | 10 <body> |
| 11 <script> | 11 <script> |
| 12 let context; | 12 let context; |
| 13 let defaultLatency; | 13 let defaultLatency; |
| 14 let interactiveLatency; | 14 let interactiveLatency; |
| 15 let balancedLatency; | 15 let balancedLatency; |
| 16 let playbackLatency; | 16 let playbackLatency; |
| 17 | 17 |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "context = new AudioContext('latencyHint')") | 130 "context = new AudioContext('latencyHint')") |
| 131 .throw("TypeError"); | 131 .throw("TypeError"); |
| 132 | 132 |
| 133 Promise.all(closingPromises).then(function() { task.done(); }); | 133 Promise.all(closingPromises).then(function() { task.done(); }); |
| 134 }); | 134 }); |
| 135 | 135 |
| 136 audit.run(); | 136 audit.run(); |
| 137 </script> | 137 </script> |
| 138 </body> | 138 </body> |
| 139 </html> | 139 </html> |
| OLD | NEW |