339388-1b.html 547 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html class="reftest-wait">
  3. <head>
  4. <script>
  5. function doTest() {
  6. var n = document.getElementById("n");
  7. for (var i = 0; i < 5; ++i) {
  8. n.style.position = "absolute";
  9. document.body.offsetWidth;
  10. n.style.position = "";
  11. document.body.offsetWidth;
  12. }
  13. document.documentElement.className = "";
  14. }
  15. </script>
  16. </head>
  17. <body onload="doTest()">
  18. <table border="5">
  19. <tr>
  20. <td id="n">TD</td>
  21. </tr>
  22. </table>
  23. </body>
  24. </html>