Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/viewBox-and-pattern-03.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%">
<title>Testcase for elements referencing a viewBox pattern</title>
<defs>
<pattern id="test" width="1" height="2" viewBox="0 0 10 10" patternUnits="userSpaceOnUse">
<rect y="-3" width="10" height="5" fill="lime" />
</pattern>
</defs>
<rect width="100%" height="100%" fill="lime" />
<rect transform="scale(10)" x=".2" y=".2" width="1" height="0.5" fill="red" />
<rect transform="scale(10)" x=".2" y=".2" width="1" height="0.5" fill="url(#test)" />
</svg>