597240-1.xhtml (435B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 <![CDATA[ 5 6 function boom() 7 { 8 document.documentElement.offsetHeight; 9 var div = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); 10 div.style.cssFloat = "left"; 11 document.getElementById("a").appendChild(div); 12 } 13 14 ]]> 15 </script> 16 </head> 17 <body onload="boom();"> 18 <fieldset id="a"><legend style="display: table-footer-group;"></legend></fieldset> 19 </body> 20 </html>