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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiobuffersource-loop-points.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 2
3 <!-- 3 <!--
4 Tests that AudioBufferSourceNode supports loop-points with .loopStart and .loopE nd. 4 Tests that AudioBufferSourceNode supports loop-points with .loopStart and .loopE nd.
5 --> 5 -->
6 6
7 <html> 7 <html>
8 <head> 8 <head>
9 <script src="resources/audit-util.js"></script> 9 <script src="../resources/audit-util.js"></script>
10 <script src="resources/audio-testing.js"></script> 10 <script src="../resources/audio-testing.js"></script>
11 11
12 </head> 12 </head>
13 <body> 13 <body>
14 14
15 <script> 15 <script>
16 16
17 window.onload = init; 17 window.onload = init;
18 18
19 var sampleRate = 44100.0; 19 var sampleRate = 44100.0;
20 var numberOfNotes = 60; // play over a 5 octave range 20 var numberOfNotes = 60; // play over a 5 octave range
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 context.oncomplete = finishAudioTest; 103 context.oncomplete = finishAudioTest;
104 context.startRendering(); 104 context.startRendering();
105 105
106 testRunner.waitUntilDone(); 106 testRunner.waitUntilDone();
107 } 107 }
108 108
109 </script> 109 </script>
110 110
111 </body> 111 </body>
112 </html> 112 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698