tor-browser

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

image-load-shortcircuit-2.html (223B)


      1 <html>
      2 <body>
      3 <template id="template">
      4 <img src="pass.png" alt="Alt Text" />
      5 </template>
      6 <script>
      7  document.body.appendChild(document.getElementById('template').content.children[0].cloneNode(1));
      8 </script>
      9 </body>
     10 </html>