Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / visibility-override-mask.svg
blobf9ab16a0f09477c74e0c7041d3b2a644bb9974db
1 <svg xmlns="http://www.w3.org/2000/svg"
2 xmlns:xlink="http://www.w3.org/1999/xlink">
3 <defs>
4 <mask id="mymask">
5 <rect x="0" y="0" width="100px" height="100px" fill='white'/>
6 </mask>
7 </defs>
9 <rect fill="blue" height="100px" width="100px"/>
11 <g mask="url(#mymask)" visibility='hidden'>
12 <g visibility='visible'>
13 <rect x="0" y="0" width="200px" height="200px" fill="red"/>
14 <rect visibility="visible" x="0" y="0" width="100px" height="100px" fill="green"/>
15 </g>
16 <rect x="0" y="0" width="100px" height="100px" fill="red"/>
17 </g>
18 </svg>