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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-summingjunction.html

Issue 2599873003: Remove compatibility.js from WebAudio tests (Closed)
Patch Set: Rebasing Created 3 years, 11 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 multiple audio-rate signals (AudioNode outputs) can be connected to a n AudioParam 4 Tests that multiple audio-rate signals (AudioNode outputs) can be connected to a n AudioParam
5 and that these signals are summed, along with the AudioParams intrinsic value. 5 and that these signals are summed, along with the AudioParams intrinsic value.
6 --> 6 -->
7 7
8 <html> 8 <html>
9 <head> 9 <head>
10 <script src="../../resources/js-test.js"></script> 10 <script src="../../resources/js-test.js"></script>
11 <script src="../resources/compatibility.js"></script>
12 <script src="../resources/audit-util.js"></script> 11 <script src="../resources/audit-util.js"></script>
13 <script src="../resources/audio-testing.js"></script> 12 <script src="../resources/audio-testing.js"></script>
14 <script src="../resources/mix-testing.js"></script> 13 <script src="../resources/mix-testing.js"></script>
15 14
16 </head> 15 </head>
17 <body> 16 <body>
18 17
19 <script> 18 <script>
20 19
21 var sampleRate = 44100.0; 20 var sampleRate = 44100.0;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 context.startRendering(); 122 context.startRendering();
124 } 123 }
125 124
126 runTest(); 125 runTest();
127 successfullyParsed = true; 126 successfullyParsed = true;
128 127
129 </script> 128 </script>
130 129
131 </body> 130 </body>
132 </html> 131 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698