Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / clipped-outline.svg
blob3dcbc345dd3efbb3aa8e412be7e1192a501dafa7
1 <svg width="400" height="400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <rect width="100" height="100" fill="green"/>
3 <text y="150">This test passes if there is a green box and no red</text>
5 <clipPath id="clip">
6 <rect width="100" height="100" />
7 </clipPath>
9 <!-- The following rect should be completely clipped and should not paint. -->
10 <rect x="300" y="300" width="200" height="200" clip-path="url(#clip)" style="outline: 100px solid rgba(255,0,0,0.99)" />
11 </svg>