tor-browser

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

file_discardSystemSource.html (320B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script>
      5  function canary() {
      6    // eslint-disable-next-line no-unused-vars
      7    var someBitOfSource = 42;
      8  }
      9  function inner() {
     10    throw new Error("some error");
     11  }
     12  function throwSomething() {
     13    inner();
     14  }
     15 </script>
     16 </head>
     17 <body onload="someBitOfSource = 42">
     18 </body>
     19 </html>