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

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

Issue 2567713002: Separating layout test utilities into audit-util.js (Closed)
Patch Set: Created 4 years 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 This is a very basic test to make sure testRunner.setAudioData() works correctly . 4 This is a very basic test to make sure testRunner.setAudioData() works correctly .
5 It generates a 2 seconds long stereo result @44.1KHz 5 It generates a 2 seconds long stereo result @44.1KHz
6 The left channel will be a 880Hz tone, while the right will be 440Hz. 6 The left channel will be a 880Hz tone, while the right will be 440Hz.
7 --> 7 -->
8 8
9 <html> 9 <html>
10 <head> 10 <head>
11 <script src="../resources/js-test.js"></script> 11 <script src="../resources/js-test.js"></script>
12 <script type="text/javascript" src="resources/audio-testing.js"></script> 12 <script src="resources/audit-util.js"></script>
13 <script src="resources/audio-testing.js"></script>
13 14
14 </head> 15 </head>
15 <body> 16 <body>
16 17
17 <div id="description"></div> 18 <div id="description"></div>
18 <div id="console"></div> 19 <div id="console"></div>
19 20
20 <script> 21 <script>
21 description("Tests basic audio test infrastructure: specifically testRunner.setA udioData()"); 22 description("Tests basic audio test infrastructure: specifically testRunner.setA udioData()");
22 23
(...skipping 28 matching lines...) Expand all
51 } 52 }
52 53
53 runTest(); 54 runTest();
54 55
55 </script> 56 </script>
56 57
57 58
58 <body> 59 <body>
59 </body> 60 </body>
60 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698