blob: 1f7616622970864f5a860f776770cf05e3e7f2c7 [file] [log] [blame]
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="myclip">
<rect height='100px' width='100px'/>
</clipPath>
</defs>
<rect fill="red" height="100px" width="100px"/>
<g clip-path="url(#myclip)" visibility='hidden'>
<g visibility='visible'>
<rect x="0" y="0" width="200px" height="200px" fill="red"/>
<rect visibility="visible" x="0" y="0" width="100px" height="100px" fill="green"/>
</g>
<rect fill="red" height="100px" width="100px"/>
</g>
</svg>