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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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