tor-browser

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

doc_innerHTML.html (470B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2     http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <!doctype html>
      4 
      5 <html>
      6  <head>
      7    <meta charset="utf-8"/>
      8    <title>Performance tool + innerHTML test page</title>
      9  </head>
     10 
     11  <body>
     12    <script type="text/javascript">
     13      "use strict";
     14      window.test = function() {
     15        document.body.innerHTML = "<h1>LOL</h1>";
     16      };
     17      setInterval(window.test, 100);
     18    </script>
     19  </body>
     20 
     21 </html>