Upstream version 5.34.98.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / webaudio / javascriptaudionode-rewrap.html
1 <!DOCTYPE html>
2 <html>
3 <script src=../resources/js-test.js></script>
4 <script>
5 var jsTestIsAsync = true;
6 description("Tests re-wrapping an AudioNode sublass after its JS wrapper is deleted wraps the node as the correct subclass. A binding integrity assert will fire otherwise.");
7 </script>
8 <script src=resources/javascriptaudionode-testing.js></script>
9 <script>
10 var sampleRate = 44100.0;
11 var sourceChannels = 2;
12 var inputChannels = 8;
13 var outputChannels = 6;
14 runJSNodeTest();
15 var docElement = document.body ? document.body : document.documentElement;
16 function initCF() {
17     try { tCF122 = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe"); } catch(e) {}
18     try { docElement.appendChild(tCF122); } catch(e) {}
19 }
20 document.addEventListener("DOMContentLoaded", initCF, false);
21 </script>
22 </html>