blob: 1d33e5b5289bcc4add7e84592ff33ff01ca8a147 [file] [log] [blame]
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<clipPath id="myclip">
<rect x="0" y="0" width="200" height="200" style="-webkit-transform: scale(.5)"/>
<!-- second rect causes masking -->
<rect x="0" y="0" width="200" height="200" style="-webkit-transform: scale(.5)"/>
</clipPath>
</defs>
<g clip-path="url(#myclip)">
<rect x="0" y="0" width="200" height="200" fill="red"/>
<rect x="0" y="0" width="100" height="100" fill="green"/>
</g>
</svg>