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