Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / clip-path / clip-in-clip.svg
blob0d9b269a0ee85a2475ccfc6d66212cc243f81418
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3 <defs>
4 <clipPath id="clipper" clip-path="url(#nested-clipper)">
5 <rect x="10" y="19" width="20" height="11" />
6 </clipPath>
8 <clipPath id="nested-clipper">
9 <rect x="10" y="10" width="20" height="11" />
10 </clipPath>
12 </defs>
14 <g clip-path="url(#clipper)">
15 <rect fill="red" x="8" y="8" width="24" height="24" />
16 <rect fill="green" x="10" y="19" width="20" height="2" />
17 </g>
19 </svg>