layout/tables/crashtests/331446-1.xhtml

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     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