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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/sample-accurate-scheduling.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 we are able to schedule a series of notes to playback with sample-acc uracy. 4 Tests that we are able to schedule a series of notes to playback with sample-acc uracy.
5 We use an impulse so we can tell exactly where the rendering is happening. 5 We use an impulse so we can tell exactly where the rendering is happening.
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 type="text/javascript" src="../resources/buffer-loader.js"></script> 13 <script type="text/javascript" src="../resources/buffer-loader.js"></script>
15 </head> 14 </head>
16 15
17 <body> 16 <body>
18 17
19 <div id="description"></div> 18 <div id="description"></div>
20 <div id="console"></div> 19 <div id="console"></div>
21 20
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 context.oncomplete = checkSampleAccuracy; 125 context.oncomplete = checkSampleAccuracy;
127 context.startRendering(); 126 context.startRendering();
128 } 127 }
129 128
130 runTest(); 129 runTest();
131 130
132 </script> 131 </script>
133 132
134 </body> 133 </body>
135 </html> 134 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698