layout/reftests/table-anonymous-boxes/302113-1.html

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3 <head>
     4 <script type="text/javascript">
     5   function doTest() {
     6     var t = document.getElementById("t");
     7     for (var i = 0; i < 5; ++i) {
     8       document.body.offsetWidth;
     9       t.style.display = "none";
    10       document.body.offsetWidth;
    11       t.style.display = "block";
    12     }
    13     document.documentElement.className = "";
    14   }
    15 </script>
    16 </head>
    17 <body onload="doTest()">
    18   <span style="display: table">
    19     <span style="display: table-row">
    20       <span style="display: table-cell">
    21         Cell
    22       </span>
    23       <span style="display: table-cell">
    24         Cell
    25       </span>
    26       <span style="display: table-cell">
    27         Cell
    28       </span>
    29       <span style="display: table-cell">
    30         Cell
    31       </span>
    32       <span style="display: table-cell">
    33         Cell
    34       </span>
    35     </span>
    36     <span style="display: table-row">
    37       <span style="display: block" id="t">Which column?</span>
    38     </span>
    39   </span>
    40 </body>
    41 </html>

mercurial