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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/Gain/gain-basic.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 Verifies GainNode attributes and their type. 4 Verifies GainNode attributes and their type.
5 --> 5 -->
6 6
7 <html> 7 <html>
8 <head> 8 <head>
9 <script src="../../resources/js-test.js"></script> 9 <script src="../../resources/js-test.js"></script>
10 <script src="../resources/compatibility.js"></script>
11 <script src="../resources/audit-util.js"></script> 10 <script src="../resources/audit-util.js"></script>
12 <script src="../resources/audio-testing.js"></script> 11 <script src="../resources/audio-testing.js"></script>
13 12
14 </head> 13 </head>
15 <body> 14 <body>
16 15
17 <script> 16 <script>
18 description("Tests GainNode attributes in IDL."); 17 description("Tests GainNode attributes in IDL.");
19 18
20 function runTest() { 19 function runTest() {
(...skipping 11 matching lines...) Expand all
32 testPassed("gain is of AudioParam type."); 31 testPassed("gain is of AudioParam type.");
33 else 32 else
34 testFailed("gain is not of AudioParam type."); 33 testFailed("gain is not of AudioParam type.");
35 } 34 }
36 35
37 runTest(); 36 runTest();
38 </script> 37 </script>
39 38
40 </body> 39 </body>
41 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698