move-legend-followed-by-textarea-into-orphan-div.html (365B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>Testcase for bug 667321 of Mozilla</title> 6 <script> 7 function boom() 8 { 9 document.body.style.float = "left"; 10 document.createElement("div").appendChild(document.querySelector("legend")); 11 } 12 </script> 13 </head> 14 <body onload="boom();"><fieldset><legend></legend><textarea></textarea></fieldset></body> 15 </html>