Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / svg / custom / visibility-override-clip.svg
blob1f7616622970864f5a860f776770cf05e3e7f2c7
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs>
3 <clipPath id="myclip">
4 <rect height='100px' width='100px'/>
5 </clipPath>
6 </defs>
8 <rect fill="red" height="100px" width="100px"/>
9 <g clip-path="url(#myclip)" visibility='hidden'>
10 <g visibility='visible'>
11 <rect x="0" y="0" width="200px" height="200px" fill="red"/>
12 <rect visibility="visible" x="0" y="0" width="100px" height="100px" fill="green"/>
13 </g>
14 <rect fill="red" height="100px" width="100px"/>
15 </g>
16 </svg>