https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 1ada2b9d2facaff780efafc90e28ea813d892cb5 authored by tbirdbld on 29 August 2012, 00:05:20 UTC
Added THUNDERBIRD_16_0b1_RELEASE THUNDERBIRD_16_0b1_BUILD1 tag(s) for changeset d77906f8ceee. DONTBUILD CLOSED TREE a=release
Tip revision: 1ada2b9
293576-1.html
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <script>
      function doTest() {
        var t = document.getElementById("t");
        for (var i = 0; i < 10; ++i) {
          document.body.offsetWidth;
          t.style.display = "table-caption";
          document.body.offsetWidth;
          t.style.display = "";
        }
        document.documentElement.className = '';
      }
    </script>
  </head>
  <body onload="doTest()">
    <table border="5"><tbody><tr><td id="t">Some text</td></tr></tbody></table>
  </body>
</html>
back to top