Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-sampling.html

Issue 2212023002: Modifying audio-testing.js to support testharness.js. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing js-test.js loading order Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/compatibility.js"></script> 5 <script src="resources/compatibility.js"></script>
5 <script src="resources/audio-testing.js"></script> 6 <script src="resources/audio-testing.js"></script>
6 <script src="resources/audioparam-testing.js"></script> 7 <script src="resources/audioparam-testing.js"></script>
7 <script src="../resources/js-test.js"></script>
8 <title>Test Sampling for SetTargetAtTime</title> 8 <title>Test Sampling for SetTargetAtTime</title>
9 </head> 9 </head>
10 10
11 <body> 11 <body>
12 <script> 12 <script>
13 description("Test Sampling of SetTargetAtTime"); 13 description("Test Sampling of SetTargetAtTime");
14 14
15 window.jsTestIsAsync = true; 15 window.jsTestIsAsync = true;
16 // Some slow sample rate, but otherwise arbitrary. 16 // Some slow sample rate, but otherwise arbitrary.
17 var sampleRate = 12800; 17 var sampleRate = 12800;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 audit.defineTask("finish", function (done) { 93 audit.defineTask("finish", function (done) {
94 finishJSTest(); 94 finishJSTest();
95 done(); 95 done();
96 }); 96 });
97 97
98 audit.runTasks(); 98 audit.runTasks();
99 successfullyParsed = true; 99 successfullyParsed = true;
100 </script> 100 </script>
101 </body> 101 </body>
102 </html> 102 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698