OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title> | 4 <title> |
5 scriptprocessornode-rewrap.html | 5 scriptprocessornode-rewrap.html |
6 </title> | 6 </title> |
7 <script src="../../resources/js-test.js"></script> | 7 <script src="../../resources/js-test.js"></script> |
8 <script src="../resources/scriptprocessornode-testing.js"></script> | 8 <script src="../resources/scriptprocessornode-testing.js"></script> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
11 <script id="layout-test-code"> | 11 <script id="layout-test-code"> |
12 description( | 12 description( |
13 'Tests re-wrapping an AudioNode sublass after its JS wrapper is ' + | 13 'Tests re-wrapping an AudioNode sublass after its JS wrapper is ' + |
14 'deleted wraps the node as the correct subclass. A binding ' + | 14 'deleted wraps the node as the correct subclass. A binding ' + |
15 'integrity assert will fire otherwise.'); | 15 'integrity assert will fire otherwise.'); |
16 window.jsTestIsAsync = true; | 16 window.jsTestIsAsync = true; |
17 | 17 |
18 let sampleRate = 44100.0; | 18 let sampleRate = 44100.0; |
19 let sourceChannels = 2; | 19 let sourceChannels = 2; |
20 let inputChannels = 8; | 20 let inputChannels = 8; |
21 let outputChannels = 6; | 21 let outputChannels = 6; |
22 | 22 |
23 runJSNodeTest(); | 23 runJSNodeTest(); |
24 | 24 |
25 let i = document.createElement('iframe'); | 25 let i = document.createElement('iframe'); |
26 document.body.appendChild(i); | 26 document.body.appendChild(i); |
27 </script> | 27 </script> |
28 </body> | 28 </body> |
29 </html> | 29 </html> |
OLD | NEW |