1 Test that reparenting a removed media tag doesn't crash the process.
2 <script src=video-test.js></script>
5 var f = document.createElement('iframe');
6 document.documentElement.appendChild(f);
7 var w = f.contentWindow;
8 var div = w.document.createElement('div');
9 div.innerHTML = '<audio src="1">';
11 f.parentNode.removeChild(f);
12 document.body.appendChild(node);