tor-browser

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

breakpoint_document.html (466B)


      1 <!DOCTYPE HTML>
      2 <html>
      3  <head>
      4    <meta charset="utf8">
      5    <title>Test breakpoint document</title>
      6    <!-- Any copyright is dedicated to the Public Domain.
      7       - http://creativecommons.org/publicdomain/zero/1.0/ -->
      8  </head>
      9  <body>
     10    <script>
     11    "use strict";
     12    /* eslint-disable */
     13    function testFunction() {
     14      console.log("test Function ran");
     15    }
     16    function runDebuggerStatement() {
     17      debugger;
     18    }
     19    </script>
     20  </body>
     21 </html>