tor-browser

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

fragid-shadow-3.html (476B)


      1 <!doctype html>
      2 <div id="host"></div>
      3 <svg height="0">
      4  <!-- use an empty g to force fragid-shadow-resource.svg to load before onload -->
      5  <use href="fragid-shadow-resource.svg#empty">
      6 </svg>
      7 <script>
      8  // Test that external resource URIs resolve properly inside shadow trees.
      9  host.attachShadow({ mode: "open" }).innerHTML = `
     10    <svg width="100" height="100">
     11      <rect fill="url(fragid-shadow-resource.svg#rect)" width="100" height="100" />
     12    </svg>
     13  `;
     14 </script>