tor-browser

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

315620-1b.html (338B)


      1 <html>
      2 <head>
      3  <style>
      4    div { background: red; height: 3em; }
      5    div:empty { background: lime; }
      6  </style>
      7 </head>
      8 <body>
      9  <div style="display: none"></div>
     10  <script>
     11    var div = document.getElementsByTagName("div")[0];
     12    div.appendChild(document.createTextNode("aa"));
     13    div.style.display = "";
     14  </script>
     15 </body>
     16 </html>