widget/cocoa/crashtests/373122-1-inner.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>
     2 <head>
     4 <script>
     5 function boom()
     6 {
     7   document.body.style.position = "fixed"
     9   setTimeout(boom2, 1);
    10 }
    12 function boom2()
    13 {
    14   lappy = document.getElementById("lappy");
    15   lappy.style.display = "none"
    17   setTimeout(boom3, 200);
    18 }
    20 function boom3()
    21 {
    22   dump("Reloading\n");
    23   location.reload();
    24 }
    26 </script>
    29 </head>
    32 <body bgcolor="black" onload="boom()">
    34   <span style="overflow: scroll; display: -moz-box;"></span>
    36   <embed id="lappy" src="" width=550 height=400 TYPE="application/x-shockwave-flash" ></embed>
    38 </body>
    39 </html>

mercurial