tor-browser

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

1445682.html (559B)


      1 <script>
      2  function go() {
      3    let host = document.createElement('div');
      4    let style_1 = document.createElement('style');
      5    let style_2 = document.createElement('style');
      6    let otherElement = document.createElement('div');
      7    let shadowRoot = host.attachShadow({mode: "open"});
      8    style_1.title = 'x';
      9    style_2.title = 'y';
     10    document.head.appendChild(style_1);
     11    shadowRoot.appendChild(style_2);
     12    document.documentElement.appendChild(otherElement);
     13    otherElement.before('', host, '');
     14  }
     15  window.addEventListener('load', go)
     16 </script>