tor-browser

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

browser_toolbox_options_disable_js_iframe.html (815B)


      1 <html>
      2  <head>
      3    <title>browser_toolbox_options_disablejs.html</title>
      4    <meta charset="UTF-8">
      5    <style>
      6      div {
      7        width: 260px;
      8        height: 24px;
      9        border: 1px solid #000;
     10        margin-top: 10px;
     11      }
     12    </style>
     13    <script type="application/javascript">
     14      /* exported log */
     15      function log(msg) {
     16        const output = document.getElementById("output");
     17 
     18        output.innerHTML = msg;
     19      }
     20    </script>
     21  </head>
     22  <body>
     23    <input id="logJSEnabled"
     24           type="button"
     25           value="Log JS Enabled"
     26           onclick="log('JavaScript Enabled')"/>
     27    <input id="logJSDisabled"
     28           type="button"
     29           value="Log JS Disabled"
     30           onclick="log('JavaScript Disabled')"/>
     31    <br>
     32    <div id="output">No output</div>
     33  </body>
     34 </html>