Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / fill-fallback.svg
blob7acf8728054c22f1ade4a81bc6091e2a9585d02a
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink/'>
2 <rect fill="url(#does_not_exist) green" stroke-width="10" width='100px' height='100px' />
3 <linearGradient id="grad">
4 <stop stop-color="green"/>
5 </linearGradient>
6 <rect fill="url(#grad) red" stroke-width="10" x="150" width='100px' height='100px' />
7 <text y="150">Above two green rectangles should be displayed.</text>
8 <text y="170">The left should fall back to the green color since the uri does not exist.</text>
9 <text y="190">The right should show the valid uri and not fall back to red color. Bug 12062.</text>
10 </svg>