Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-false-resource-cycle.html
blob7e8b4e1a1f1f22b46bdc17f1b23f513bd2f280df
1 <!DOCTYPE html>
2 <svg>
3 <clipPath id="c1">
4 <rect width="100" height="100"/>
5 </clipPath>
6 <pattern id="p1" width="1" height="1">
7 <rect width="100" height="100" fill="green"/>
8 <clipPath id="c2" clip-path="url(#c1)">
9 <rect width="100" height="100"/>
10 </clipPath>
11 </pattern>
12 <rect width="100" height="100" fill="url(#p1)" clip-path="url(#c1)"/>
13 </svg>