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-symbol-display-none.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 display="none" symbol</title>
<h:link rel="match" href="reference/green-100x100.svg"/>
<defs>
<symbol id="a" display="none">
<rect width="100" height="100" fill="red"/>
</symbol>
</defs>
<rect width="100" height="100" fill="green"/>
<use href="#a"></use>
</svg>