tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

947158.html (676B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait"><head>
      3    <meta charset="utf-8">
      4    <title>Testcase for bug </title>
      5 </head>
      6 <body>
      7 
      8 <iframe src="947158-iframe.html" width="100%" frameborder=0></iframe>
      9 <iframe src="947158-iframe.html" width="100%" frameborder=0></iframe>
     10 
     11 <script>
     12 var i = 0;
     13 function test(){
     14  fs=document.querySelectorAll('iframe');
     15  f=fs[Math.floor(Math.random()*fs.length)];
     16  f.width=Math.random()*100+"%";
     17  if (i++ < 10) {
     18     setTimeout(test,300);
     19     f.offsetHeight;
     20     return;
     21  }
     22  for (var j = 0; j < fs.length; j++) {
     23    f = fs[j];
     24    f.remove();
     25  }
     26  document.documentElement.removeAttribute("class");
     27 }
     28 test();
     29 </script>
     30 
     31 </body>
     32 </html>