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

Side by Side Diff: LayoutTests/webaudio/javascriptaudionode-rewrap.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script src=../fast/js/resources/js-test-pre.js></script> 3 <script src=../fast/js/resources/js-test-pre.js></script>
4 <script> 4 <script>
5 var jsTestIsAsync = true; 5 var jsTestIsAsync = true;
6 description("Tests re-wrapping an AudioNode sublass after its JS wrapper is dele ted wraps the node as the correct subclass. A binding integrity assert will fire otherwise."); 6 description("Tests re-wrapping an AudioNode sublass after its JS wrapper is dele ted wraps the node as the correct subclass. A binding integrity assert will fire otherwise.");
7 </script> 7 </script>
8 <script src=../fast/js/resources/js-test-post.js></script>
9 <script src=resources/javascriptaudionode-testing.js></script> 8 <script src=resources/javascriptaudionode-testing.js></script>
10 <script> 9 <script>
11 var sampleRate = 44100.0; 10 var sampleRate = 44100.0;
12 var sourceChannels = 2; 11 var sourceChannels = 2;
13 var inputChannels = 8; 12 var inputChannels = 8;
14 var outputChannels = 6; 13 var outputChannels = 6;
15 runJSNodeTest(); 14 runJSNodeTest();
16 var docElement = document.body ? document.body : document.documentElement; 15 var docElement = document.body ? document.body : document.documentElement;
17 function initCF() { 16 function initCF() {
18 try { tCF122 = document.createElementNS("http://www.w3.org/1999/xhtml", "ifr ame"); } catch(e) {} 17 try { tCF122 = document.createElementNS("http://www.w3.org/1999/xhtml", "ifr ame"); } catch(e) {}
19 try { docElement.appendChild(tCF122); } catch(e) {} 18 try { docElement.appendChild(tCF122); } catch(e) {}
20 } 19 }
21 document.addEventListener("DOMContentLoaded", initCF, false); 20 document.addEventListener("DOMContentLoaded", initCF, false);
22 </script> 21 </script>
23 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698