widget/cocoa/crashtests/373122-1-inner.html

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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