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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/audiobuffersource-ended.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 <head> 2 <head>
3 <script src="../../resources/js-test.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script src="../resources/audit-util.js"></script> 4 <script src="../resources/audit-util.js"></script>
5 <script src="../resources/audio-testing.js"></script> 5 <script src="../resources/audio-testing.js"></script>
6 <script src="../resources/compatibility.js"></script>
7 <script src="../resources/audiobuffersource-testing.js"></script> 6 <script src="../resources/audiobuffersource-testing.js"></script>
8 <script> 7 <script>
9 var context; 8 var context;
10 var source; 9 var source;
11 10
12 function runTest() 11 function runTest()
13 { 12 {
14 if (window.testRunner) { 13 if (window.testRunner) {
15 testRunner.dumpAsText(); 14 testRunner.dumpAsText();
16 testRunner.waitUntilDone(); 15 testRunner.waitUntilDone();
(...skipping 14 matching lines...) Expand all
31 source.start(0); 30 source.start(0);
32 context.startRendering(); 31 context.startRendering();
33 } 32 }
34 </script> 33 </script>
35 34
36 </head> 35 </head>
37 <body onload="runTest()"> 36 <body onload="runTest()">
38 <div>Tests that AudioBufferSourceNode calls its onended EventListener.</div> 37 <div>Tests that AudioBufferSourceNode calls its onended EventListener.</div>
39 <div id="console"></div> 38 <div id="console"></div>
40 </body> 39 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698