Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-directly-and-indirectly-referenced-expected.svg
blob3aa71f4f0293e10e4f97814893f1ef8a4294d0c3
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <pattern width="100%" height="100%" id="pattern" viewBox="0 0 100 100">
3 <rect width="100" height="100" fill="gray"/>
4 </pattern>
5 <pattern width="100%" height="100%" id="maskPattern" viewBox="0 0 100 100">
6 <rect width="100" height="100" fill="gray"/>
7 </pattern>
8 <mask id="mask">
9 <circle fill="url(#maskPattern)" cx="100" cy="100" r="100"/>
10 </mask>
11 <rect width="200" height="200" mask="url(#mask)" fill="url(#pattern)"/>
12 </svg>