Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/struct/reftests/use-cross-origin.svg - WPT Dashboard Interop Dashboard
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink">
<title><use> with a cross-origin resource</title>
<h:link rel="match" href="reference/green-100x100.svg"/>
<rect width="100" height="100" fill="green"/>
<script>
const svg = document.querySelector('svg');
use.setAttribute('href', location.href.replace('://', '://www1.') + '/../support/red-rect.svg#red-rect');
svg.appendChild(use);
</script>
</svg>