| 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 Negative AudioParam.exponentialRampToValueAtTime</title> | 8 <title>Test Negative AudioParam.exponentialRampToValueAtTime</title> |
| 8 </head> | 9 </head> |
| 9 | 10 |
| 10 <body> | 11 <body> |
| 11 <script> | 12 <script> |
| 12 description("Test AudioParam.exponentialRampToValueAtTime() with Negative
Values."); | 13 description("Test AudioParam.exponentialRampToValueAtTime() with Negative
Values."); |
| 13 window.jsTestIsAsync = true; | 14 window.jsTestIsAsync = true; |
| 14 | 15 |
| 15 var sampleRate = 48000; | 16 var sampleRate = 48000; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 | 148 |
| 148 audit.defineTask("finish", function (done) { | 149 audit.defineTask("finish", function (done) { |
| 149 finishJSTest(); | 150 finishJSTest(); |
| 150 done(); | 151 done(); |
| 151 }); | 152 }); |
| 152 | 153 |
| 153 audit.runTasks(); | 154 audit.runTasks(); |
| 154 </script> | 155 </script> |
| 155 </body> | 156 </body> |
| 156 </html> | 157 </html> |
| OLD | NEW |