| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink='http://www.w3.org/1999/xlink/'> |
| <rect stroke="url(#does_not_exist) green" stroke-width="10" fill="green" width='95px' height='95px' /> |
| <linearGradient id="grad"> |
| <stop stop-color="green"/> |
| </linearGradient> |
| <rect stroke="url(#grad) red" stroke-width="10" fill="green" x="150" width='95px' height='95px' /> |
| <text y="150">Above two green rectangles should be displayed.</text> |
| <text y="170">The left should fall back to the green color since the uri does not exist.</text> |
| <text y="190">The right should show the valid uri and not fall back to red color. Bug 12062.</text> |
| </svg> |