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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-premature-death.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 <script src="../../resources/js-test.js"></script> 2 <script src="../../resources/js-test.js"></script>
3 <script src="../resources/compatibility.js"></script>
4 <body> 3 <body>
5 <script> 4 <script>
6 description('Tests that a script processor node is not prematurely GCed'); 5 description('Tests that a script processor node is not prematurely GCed');
7 var jsTestIsAsync = true; 6 var jsTestIsAsync = true;
8 7
9 if (!window.internals) { 8 if (!window.internals) {
10 testFailed('This test requires window.internals.'); 9 testFailed('This test requires window.internals.');
11 finishJSTest(); 10 finishJSTest();
12 } 11 }
13 12
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 } 78 }
80 79
81 function step2() { 80 function step2() {
82 test(false, finishJSTest); 81 test(false, finishJSTest);
83 } 82 }
84 83
85 step1(); 84 step1();
86 85
87 var successfullyParsed = true; 86 var successfullyParsed = true;
88 </script> 87 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698