Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / image-clip-taints-state.html
blob2b4309d93844e78d87882ca8111fd3ca365d40cd
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <svg width="300" height="300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
5 <defs>
6 <clipPath id="clip1">
7 <rect x="200" y="200" width="100" height="100"/>
8 </clipPath>
9 </defs>
11 <rect width="100" height="100" fill="red"/>
13 <!-- Doesn't draw anything, but should not taint the clip stack -->
14 <image x="200" y="200" width="100" height="100" clip-path="url(#clip1)"
15 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'></svg>"/>
17 <rect width="100" height="100" fill="green"/>
18 </svg>
19 </body>
20 </html>