OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
4 <body> | 4 <body> |
5 <div id="a"></div> | 5 <div id="a"></div> |
6 <div id="b"> | 6 <div id="b"> |
7 <iframe id="f" src="about:blank"></iframe> | 7 <iframe id="f" src="about:blank"></iframe> |
8 </div> | 8 </div> |
9 | 9 |
10 <script> | 10 <script> |
(...skipping 14 matching lines...) Expand all Loading... | |
25 return; | 25 return; |
26 } | 26 } |
27 document.getElementById('a').appendChild(document.getElementById('b')); | 27 document.getElementById('a').appendChild(document.getElementById('b')); |
28 }; | 28 }; |
29 | 29 |
30 moveDivBIntoDivA(); | 30 moveDivBIntoDivA(); |
31 fDoc.close(); | 31 fDoc.close(); |
32 </script> | 32 </script> |
33 </body> | 33 </body> |
34 </html> | 34 </html> |
OLD | NEW |