blob: 668c3d35dfd346178c624d3b4c8ae986a406a1f9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100">
<pattern id="p1" width="100%" height="100%">
<rect width="100" height="100" fill="url(#p2)"/>
</pattern>
<pattern id="p2" width="100%" height="100%">
<rect width="100" height="100" fill="url(#p1)"/>
</pattern>
<rect width="100" height="100" fill="url(#p1)"/>
</svg>
|