Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / viewport-resource-inval-expected.svg
blob855af896545f0f15cd9678c0ceb94846ef6b026c
1 <svg id="svg" width="400" height="400" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <mask id="mask">
4 <rect width="25%" height="25%" fill="white"/>
5 </mask>
7 <clipPath id="clip">
8 <rect x="27%" width="25%" height="25%"/>
9 </clipPath>
11 <pattern id="pattern" patternUnits="userSpaceOnUse" x="0" y="0" width="800" height="800">
12 <rect x="54%" width="25%" height="25%" fill="green"/>
13 </pattern>
14 </defs>
16 <rect width="25%" height="25%" fill="red"/>
17 <rect width="800" height="800" fill="green" mask="url(#mask)"/>
19 <rect x="27%" width="25%" height="25%" fill="red"/>
20 <rect width="800" height="800" fill="green" clip-path="url(#clip)"/>
22 <rect x="54%" width="25%" height="25%" fill="red"/>
23 <rect width="800" height="800" fill="url(#pattern)"/>
24 </svg>