tor-browser

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

style-sharing.html (291B)


      1 <!doctype html>
      2 <div id="host"></div>
      3 <script>
      4  let root = host.attachShadow({mode: 'open'});
      5  root.innerHTML = `
      6    <style>
      7      #test {
      8        color: green;
      9      }
     10    </style>
     11    <span id="test">Should be green</span>
     12    <span id="test2">Should not be green</span>
     13  `;
     14 </script>