tor-browser

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

file_script_template.html (379B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta http-equiv="Content-Security-Policy" content="default-src 'unsafe-inline'">
      5 <template id="a">
      6  <script src="file_script_template.js"></script>
      7 </template>
      8 </head>
      9 <body>
     10 <script>
     11  var temp = document.getElementsByTagName("template")[0];
     12  var clon = temp.content.cloneNode(true);
     13  document.body.appendChild(clon);
     14 </script>
     15 </body>
     16 </html>