tor-browser

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

fragid-shadow-9.html (439B)


      1 <!doctype html>
      2 <style>
      3  #shadow {
      4    fill: red;
      5  }
      6 </style>
      7 <div id="host"></div>
      8 <script>
      9  host.attachShadow({ mode: "open" }).innerHTML = `
     10    <style>
     11      #shadow {
     12        fill: lime;
     13      }
     14    </style>
     15    <svg width="100" height="100">
     16      <defs>
     17        <g id="shadow" width="100" height="100">
     18          <rect width="100" height="100" />
     19        </g>
     20      </defs>
     21      <use href="#shadow" />
     22    </svg>
     23  `;
     24 </script>