Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / circular-clip-path-references-crash.svg
blob0432bedc4148176fcc999fa7922f7f7e8a77d40b
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs>
3 <clipPath id="clip0">
4 <rect width="1" height="1" clip-path="url(#clip)" />
6 </clipPath>
8 <clipPath id="clip2">
9 <rect width="100" height="100" clip-path="url(#clip0)"/>
10 </clipPath>
12 <clipPath id="clip">
13 <rect width="1" height="1" clip-path="url(#clip2)"/>
14 </clipPath>
16 <mask id="mask1" x="0" y="0" width="1" height="1" maskContentUnits="objectBoundingBox">
17 <rect width="1" height="1" clip-path="url(#clip)" />
18 </mask>
19 </defs>
21 <text x="10" y="75">This test passes if it does not crash.</text>
23 <circle r="50" mask="url(#mask1)"/>
25 </svg>