tor-browser

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

344874-1.html (325B)


      1 <html>
      2 <head>
      3 <script>
      4 
      5 var img;
      6 
      7 function boo()
      8 {
      9  img = document.getElementById("img");
     10  setScriptSrc();
     11 }
     12 
     13 function setScriptSrc()
     14 {
     15  img.src = "javascript:setScriptSrc();";
     16 }
     17 
     18 </script>
     19 </head>
     20 
     21 <body onload="setTimeout(boo, 30);">
     22 
     23 <img src="../../../../testing/crashtest/images/tree.gif" id="img">
     24 
     25 </body>
     26 
     27 </html>