layout/tables/crashtests/331446-1.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
     2 <head>
     4 <style id="styles"></style>
     6 <script>
     8 window.addEventListener("load", f1, false);
    10 function f1()
    11 {
    12   document.getElementById("div2").setAttribute("style", "position: absolute;");
    13   document.getElementById("table").setAttribute("style", "width: 200%;");
    14   setTimeout(f2, 30);
    15 }
    17 function f2()
    18 {
    19   document.getElementById("styles").textContent = ".thisMatchesNothing { }";
    20   document.documentElement.removeAttribute("class");
    21 }
    23 </script>
    25 </head>
    27 <body style="position: relative; -moz-column-width: 1px;">
    29 <table id="table">
    30  <tr>
    31   <td>Table</td>
    32  </tr>
    33 </table>
    35 <div>A</div>
    37 <div id="div2">B</div>
    39 <div style="display: table; width: 200%;">C</div>
    41 </body>
    42 </html>

mercurial