content/base/crashtests/458637-1.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 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