469859-1.xhtml 571 B

123456789101112131415161718192021222324252627282930313233
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <style id="ss" type="text/css">
  4. #o {
  5. height: 65px;
  6. }
  7. </style>
  8. <script type="text/javascript">
  9. function boom()
  10. {
  11. document.getElementById("ss").disabled = true;
  12. document.documentElement.offsetHeight;
  13. document.getElementById("ss").disabled = false;
  14. }
  15. </script>
  16. </head>
  17. <body onload="boom();">
  18. <div style="-moz-column-width: 0;">
  19. <colgroup></colgroup>
  20. <div>
  21. <div id="o" style="float: left;"></div>
  22. <div style="clear: both;">A B<div style="float: left;"></div></div>
  23. </div>
  24. </div>
  25. </body>
  26. </html>