tor-browser

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

40929-1-inner.html (250B)


      1 <html><head><title>Infinite Loop</title></head>
      2 <body onLoad="initNav(); initNav();">
      3 
      4 <script language="JavaScript">
      5 
      6 function initNav() {
      7  ++parent.i;
      8  if (parent.i < 10)
      9  	window.location.href=window.location.href;
     10 }
     11 
     12 </script>
     13 
     14 </body></html>