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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/Analyser/realtimeanalyser-freq-data-smoothing.html

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 3 years, 12 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/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/realtimeanalyser-testing.js"></script> 8 <script src="../resources/realtimeanalyser-testing.js"></script>
9 <script src="resources/fft.js"></script> 9 <script src="../resources/fft.js"></script>
10 <title>Test Analyser getFloatFrequencyData and getByteFrequencyData, Smoothi ng</title> 10 <title>Test Analyser getFloatFrequencyData and getByteFrequencyData, Smoothi ng</title>
11 11
12 </head> 12 </head>
13 13
14 <body> 14 <body>
15 <script> 15 <script>
16 description("Test AnalyserNode getFloatFrequencyData and getByteFrequencyD ata, Smoothing"); 16 description("Test AnalyserNode getFloatFrequencyData and getByteFrequencyD ata, Smoothing");
17 window.jsTestIsAsync = true; 17 window.jsTestIsAsync = true;
18 18
19 // Use a power of two to eliminate any round-off in the computation of the times for 19 // Use a power of two to eliminate any round-off in the computation of the times for
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 audit.defineTask("finish", function (done) { 130 audit.defineTask("finish", function (done) {
131 finishJSTest(); 131 finishJSTest();
132 done(); 132 done();
133 }); 133 });
134 134
135 audit.runTasks(); 135 audit.runTasks();
136 136
137 </script> 137 </script>
138 </body> 138 </body>
139 </html> 139 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698