tor-browser

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

565819-1.html (347B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <style>
      5      div { color: green; }
      6      div:empty { color: red; }
      7    </style>
      8    <script>
      9      window.onload = function () {
     10        document.getElementById("x").appendChild(document.createTextNode("This should be green"));
     11      }
     12    </script>
     13  </head>
     14  <body>
     15    <div id="x"></div>
     16  </body>
     17 </html>