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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/up-mixing-stereo-51.html

Issue 2567713002: Separating layout test utilities into audit-util.js (Closed)
Patch Set: 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 up mixing from stereo to 5.1. 4 Test up mixing from stereo to 5.1.
5 --> 5 -->
6 6
7 <html> 7 <html>
8 <head> 8 <head>
9 <script type="text/javascript" src="resources/audio-testing.js"></script> 9 <script src="resources/audit-util.js"></script>
10 <script src="resources/audio-testing.js"></script>
10 <script type="text/javascript" src="resources/mix-testing.js"></script> 11 <script type="text/javascript" src="resources/mix-testing.js"></script>
11 </head> 12 </head>
12 <body> 13 <body>
13 14
14 <script> 15 <script>
15 16
16 function runTest() { 17 function runTest() {
17 if (!window.testRunner) 18 if (!window.testRunner)
18 return; 19 return;
19 20
(...skipping 14 matching lines...) Expand all
34 35
35 context.oncomplete = finishAudioTest; 36 context.oncomplete = finishAudioTest;
36 context.startRendering(); 37 context.startRendering();
37 } 38 }
38 39
39 runTest(); 40 runTest();
40 </script> 41 </script>
41 42
42 </body> 43 </body>
43 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698