1
0
Fork 0
firefox/layout/reftests/svg/pattern-css-transform-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

10 lines
339 B
HTML

<svg width="200" height="200">
<defs>
<pattern id="Pattern" x="0" y="0" width=".25" height=".25">
<rect x="0" y="0" width="30" height="30" fill="skyblue"/>
<rect x="40" y="40" width="10" height="10" fill="skyblue" />
</pattern>
</defs>
<rect fill="url(#Pattern)" stroke="black" width="200" height="200"/>
</svg>