layout/base/crashtests/337268-1.html

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 class="reftest-wait">
     2 <head>
     3 <script>
     5 window.addEventListener("load", foo1, false);
     7 function foo1()
     8 {
     9   document.getElementById("a").style.width = "20em";
    10   setTimeout(foo2, 30);
    11 }
    13 function foo2()
    14 {
    15   document.getElementById("b").style.width = "auto";
    16   document.documentElement.removeAttribute("class");
    17 }
    19 </script>
    20 </head>
    22 <body>
    24 <table>
    25 <tr>
    26 <td id="a">
    28 <table style="display: -moz-inline-box;">
    29 <tr>
    30 <td width="100%">
    32 XXX XXX
    34 <div id="b" style="width: 200%; display: table-column-group;"></div>
    36 </td>
    37 </tr>
    38 </table>
    40 </td>
    41 </tr>
    42 </table>
    44 </body>
    45 </html>

mercurial