Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / mask-with-default-value.svg
blobf7f60a9374c88fb740e730c2b5c3ed539678d9ec
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs>
3 <mask id="m1">
4 <rect x="0%" y="0%" width="100%" height="100%"/>
5 </mask>
6 </defs>
7 <rect x="0" y="0" width="120" height="120" fill="green"/>
8 <rect x="10" y="10" width="100" height="100" fill="red" mask="url(#m1)" />
9 </svg>