Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / empty-mask.svg
blob2b9d4c14be8a92bb47e79b721b41b02bb0f93f81
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <mask id="mask">
4 <rect x="-0.5" y="-0.5" width="0.1" height="0.1" fill="white"/>
5 </mask>
6 </defs>
7 <rect x="20" y="20" width="100" height="100" style="fill:green;mask:url(#mask);"/>
8 <text x="60" y="60" style="fill:green;mask:url(#mask);"><tspan>test</tspan></text>
9 </svg>