Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / gradient-cycle-detection.svg
blob15257241e6bac3be9b79192d48c1f5bd574c6ed1
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2 <defs>
3 <linearGradient id="cycle2" xlink:href="#cycle1">
4 <stop offset="0" stop-color="red" />
5 <stop offset="1" stop-color="orange" />
6 </linearGradient>
8 <linearGradient id="cycle1" xlink:href="#cycle2"/>
9 </defs>
11 <rect fill="url(#cycle1) green" width="100px" height="100px"/>
12 <text x="10" y="150">The square above should show a gradient now that webkit supports proper fill fallback</text>
13 </svg>