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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/AudioBufferSource/sample-accurate-scheduling.html

Issue 2581463002: Refactor WebAudio test directory (Closed)
Patch Set: Use correct path for wav result files Created 3 years, 12 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> 11 <script src="../resources/compatibility.js"></script>
12 <script src="resources/audit-util.js"></script> 12 <script src="../resources/audit-util.js"></script>
13 <script src="resources/audio-testing.js"></script> 13 <script src="../resources/audio-testing.js"></script>
14 <script type="text/javascript" src="resources/buffer-loader.js"></script> 14 <script type="text/javascript" src="../resources/buffer-loader.js"></script>
15 </head> 15 </head>
16 16
17 <body> 17 <body>
18 18
19 <div id="description"></div> 19 <div id="description"></div>
20 <div id="console"></div> 20 <div id="console"></div>
21 21
22 <script> 22 <script>
23 description("Tests sample-accurate scheduling."); 23 description("Tests sample-accurate scheduling.");
24 24
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 context.oncomplete = checkSampleAccuracy; 126 context.oncomplete = checkSampleAccuracy;
127 context.startRendering(); 127 context.startRendering();
128 } 128 }
129 129
130 runTest(); 130 runTest();
131 131
132 </script> 132 </script>
133 133
134 </body> 134 </body>
135 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698