Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / pattern-cycle-detection.svg
blob13af84b5851e8b79c86557a657f2ca9f57d4819c
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <pattern id="cycle2" patternUnits="userSpaceOnUse" patternContentUnits="userSpaceOnUse" x="20" y="20" width="50" height="30">
4 <rect x="0" y="0" width="50" height="30" fill="blue" stroke="green"/>
5 </pattern>
7 <pattern id="cycle1" xlink:href="#cycle2"/>
8 </defs>
10 <rect fill="url(#cycle1) green" width="100px" height="100px" />
11 <text x="10" y="150">The square above should show a pattern now that fill fallback is supported.</text>
12 </svg>