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

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

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 4 years 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/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/audit-util.js"></script>
7 <script src="resources/audio-testing.js"></script> 7 <script src="../resources/audio-testing.js"></script>
8 <script src="resources/audioparam-testing.js"></script> 8 <script src="../resources/audioparam-testing.js"></script>
9 <title>Test Sampling for SetTargetAtTime</title> 9 <title>Test Sampling for SetTargetAtTime</title>
10 </head> 10 </head>
11 11
12 <body> 12 <body>
13 <script> 13 <script>
14 description("Test Sampling of SetTargetAtTime"); 14 description("Test Sampling of SetTargetAtTime");
15 15
16 window.jsTestIsAsync = true; 16 window.jsTestIsAsync = true;
17 // Some slow sample rate, but otherwise arbitrary. 17 // Some slow sample rate, but otherwise arbitrary.
18 var sampleRate = 12800; 18 var sampleRate = 12800;
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 audit.defineTask("finish", function (done) { 94 audit.defineTask("finish", function (done) {
95 finishJSTest(); 95 finishJSTest();
96 done(); 96 done();
97 }); 97 });
98 98
99 audit.runTasks(); 99 audit.runTasks();
100 successfullyParsed = true; 100 successfullyParsed = true;
101 </script> 101 </script>
102 </body> 102 </body>
103 </html> 103 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698