| OLD | NEW |
| (Empty) |
| 1 <svg xmlns="http://www.w3.org/2000/svg" width="300" height="200"> | |
| 2 <desc>There should be a green circle when this is rendered.</desc> | |
| 3 <x:test xmlns:x="http://www.example.org/" xml:id="test"> | |
| 4 <linearGradient x1="0" y1="0" x2="1" y2="0" | |
| 5 gradientUnits="objectBoundingBox"> | |
| 6 <stop offset="0" stop-color="maroon"/> | |
| 7 <stop offset="1" stop-color="red"/> | |
| 8 </linearGradient> | |
| 9 </x:test> | |
| 10 <circle cx="150" cy="100" r="50" fill="red"/> | |
| 11 <!-- on the next line the given paint server is not valid, therefore it is unsu
pported and XXX raised as last call issue XXX --> | |
| 12 <rect x="0" y="0" width="300" height="200" stroke="blue" fill="url(#test)"/> | |
| 13 <text x="10" y="30" font-size="20" fill="blue">There should be a black</text> | |
| 14 <text x="10" y="60" font-size="20" fill="blue">rectangle with a blue</text> | |
| 15 <text x="10" y="90" font-size="20" fill="blue">border on this page.</text> | |
| 16 </svg> | |
| 17 | |
| OLD | NEW |