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