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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/oscillator-basic.html

Issue 2212023002: Modifying audio-testing.js to support testharness.js. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing js-test.js loading order Created 4 years, 4 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 2
3 <!-- 3 <!--
4 Create an oscillator of each type and verify that the type is set correctly. 4 Create an oscillator of each type and verify that the type is set correctly.
5 --> 5 -->
6 <html> 6 <html>
7 <head> 7 <head>
8 <script src="../resources/js-test.js"></script>
8 <script src="resources/compatibility.js"></script> 9 <script src="resources/compatibility.js"></script>
9 <script type="text/javascript" src="resources/audio-testing.js"></script> 10 <script src="resources/audio-testing.js"></script>
10 <script type="text/javascript" src="../resources/js-test.js"></script>
11 </head> 11 </head>
12 12
13 <body> 13 <body>
14 <div id="description"></div> 14 <div id="description"></div>
15 <div id="console"></div> 15 <div id="console"></div>
16 16
17 <script> 17 <script>
18 description("Basic test of setting Oscillator node types."); 18 description("Basic test of setting Oscillator node types.");
19 19
20 var sampleRate = 44100; 20 var sampleRate = 44100;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 } 69 }
70 70
71 runTest(); 71 runTest();
72 successfullyParsed = true; 72 successfullyParsed = true;
73 73
74 </script> 74 </script>
75 75
76 76
77 </body> 77 </body>
78 </html> 78 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698