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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiobuffersource-multi-channels.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 2
3 <!-- 3 <!--
4 Test AudioBufferSourceNode supports 5.1 channel. 4 Test AudioBufferSourceNode supports 5.1 channel.
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 <script type="text/javascript" src="resources/mix-testing.js"></script> 11 <script type="text/javascript" src="../resources/mix-testing.js"></script>
12 </head> 12 </head>
13 <body> 13 <body>
14 14
15 <script> 15 <script>
16 16
17 function runTest() { 17 function runTest() {
18 if (!window.testRunner) 18 if (!window.testRunner)
19 return; 19 return;
20 20
21 testRunner.waitUntilDone(); 21 testRunner.waitUntilDone();
(...skipping 13 matching lines...) Expand all
35 35
36 context.oncomplete = finishAudioTest; 36 context.oncomplete = finishAudioTest;
37 context.startRendering(); 37 context.startRendering();
38 } 38 }
39 39
40 runTest(); 40 runTest();
41 </script> 41 </script>
42 42
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698