summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/struct/reftests/use-adopted-with-external-resource.tentative.svg
blob: 830d4555e5ada27aabb6f3cb128340646000fba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml">
  <title>Adopting a &#x3c;use&#x3e; (from an inactive document) requests an external resource</title>
  <h:link rel="match" href="reference/green-100x100.svg"/>
  <script type="text/plain" template=""><![CDATA[
    <svg xmlns="http://www.w3.org/2000/svg">
      <use href="support/sprites.svg#green-rect"/>
    </svg>]]>
  </script>
  <script>
    let text = document.querySelector('script[template]').textContent;
    let doc = new DOMParser().parseFromString(text, 'image/svg+xml');
    document.documentElement.appendChild(doc.documentElement);
  </script>
</svg>