Source code

Revision control

Copy as Markdown

Other Tools

SVG Preview (Scaled)

Preview of https://raw.githubusercontent.com/mozilla-firefox/firefox/main/testing/web-platform/tests/svg/pservers/reftests/reference/pattern-transform-template-inheritance-ref.svg
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="100">
<defs>
<pattern id="pattern-rotated" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(45)">
<rect width="10" height="10" fill="green"/>
</pattern>
<pattern id="pattern-translated" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="translate(5 0)">
<rect width="10" height="10" fill="green"/>
</pattern>
</defs>
<rect x="10" y="10" width="80" height="80" fill="url(#pattern-rotated)"/>
<rect x="110" y="10" width="80" height="80" fill="url(#pattern-rotated)"/>
<rect x="210" y="10" width="80" height="80" fill="url(#pattern-rotated)"/>
<rect x="310" y="10" width="80" height="80" fill="url(#pattern-translated)"/>
</svg>