Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://raw.githubusercontent.com/mozilla-firefox/firefox/main/testing/web-platform/tests/svg/coordinate-systems/viewBox-zero-disables-rendering-symbol.svg
<svg xmlns="http://www.w3.org/2000/svg" xmlns:h="http://www.w3.org/1999/xhtml" width="200" height="200">
<title>A symbol with a zero viewBox disables rendering of its referenced content</title>
<h:link rel="match" href="viewBox-zero-disables-rendering-ref.svg"/>
<h:meta name="assert" content="A symbol whose viewBox has a zero width disables rendering; the instance created by use paints nothing."/>
<symbol id="s" viewBox="0 0 0 100"><rect width="100" height="100" fill="green"/></symbol>
<use href="#s" x="0" y="0" width="200" height="200"/>
</svg>