content/base/crashtests/458637-1.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 class="reftest-wait">
     2 <head>
     3 <script type="text/javascript">
     5 var iterations = 0;
     6 var start = new Date();
     8 function boom()
     9 {
    10   document.getElementById("i").style.overflow = "scroll";
    11   document.getElementById("i").src = document.getElementById("i").src;
    12   setTimeout(boom2, 10); // must be a short timeout
    13 }
    15 function boom2()
    16 {
    17   document.getElementById("i").style.overflow = "";
    18   var now = new Date();
    19   if (++iterations < 20 && now - start < 5000)
    20     setTimeout(boom, 10);
    21   else
    22     document.documentElement.removeAttribute("class");
    23 }
    25 </script>
    26 </head>
    28 <body onload="boom();"><iframe id="i" src="458637-1-inner.xhtml" style="visibility: collapse;"></iframe></body>
    29 </html>

mercurial