OLD | NEW |
---|---|
(Empty) | |
1 This test passes if it doesn't crash (or ASSERT). | |
2 <script> | |
3 if (window.testRunner) | |
4 testRunner.dumpAsText(); | |
5 | |
6 function free() { | |
7 document.adoptNode(input); | |
8 gc(); | |
9 } | |
10 | |
11 svg = document.createElementNS('http://www.w3.org/2000/svg','mover'); | |
12 input = document.createElement('input'); | |
13 svg.appendChild(input); | |
14 svg = null; | |
15 input.insertAdjacentHTML('afterend', '<section onload="free()"></section>'); | |
16 </script> | |
OLD | NEW |