463350-2.html 473 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script type="text/javascript">
  5. function boom()
  6. {
  7. document.getElementById("select").appendChild(document.createElement("span"));
  8. document.documentElement.offsetHeight;
  9. document.getElementById("z").appendChild(document.createElement("span"));
  10. }
  11. </script>
  12. </head>
  13. <body onload="boom();" style="-moz-column-count: 2; height: 0;"><fieldset><span id="z"><div><div></div></div><select id="select"></select></span></fieldset></body>
  14. </html>