blob: a48d90e58427c19134d9b98b4d1d1f226820b030 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<script src=../resources/js-test.js></script>
<script>
var jsTestIsAsync = true;
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.");
</script>
<script src=resources/javascriptaudionode-testing.js></script>
<script>
var sampleRate = 44100.0;
var sourceChannels = 2;
var inputChannels = 8;
var outputChannels = 6;
runJSNodeTest();
var docElement = document.body ? document.body : document.documentElement;
function initCF() {
try { tCF122 = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe"); } catch(e) {}
try { docElement.appendChild(tCF122); } catch(e) {}
}
document.addEventListener("DOMContentLoaded", initCF, false);
</script>
</html>
|