tor-browser

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

file_xrayic.html (384B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script type="application/javascript">
      5  function setup() {
      6    // Set up targets for sandbox expandos.
      7    window.targetDOM = [document.getElementById("hello"), document.getElementById("there")];
      8  }
      9 </script>
     10 </head>
     11 <body onload="setup();">
     12 <span id="hello" class="iamaspan">Hello</span>
     13 <span id="there" class="iamaspan">There</span>
     14 </body>
     15 </html>