OLD | NEW |
1 <svg xmlns="http://www.w3.org/2000/svg" | 1 <svg xmlns="http://www.w3.org/2000/svg" |
2 xmlns:xlink="http://www.w3.org/1999/xlink"> | 2 xmlns:xlink="http://www.w3.org/1999/xlink"> |
3 | 3 |
4 <defs> | 4 <defs> |
5 <pattern id="dot" width="1" height="1"> | 5 <pattern id="dot" width="1" height="1"> |
6 <circle cx="20" cy="50" r="10" fill="black" /> | 6 <circle cx="20" cy="50" r="10" fill="black" /> |
7 </pattern> | 7 </pattern> |
8 </defs> | 8 </defs> |
9 | 9 |
10 <text text-anchor="middle" x="200" y="100">There should be a black dot in the mi
ddle of the ellipse</text> | 10 <text text-anchor="middle" x="200" y="100">There should be a black dot in the mi
ddle of the ellipse</text> |
11 <ellipse cx="200" cy="200" rx="20" ry="50" fill="url(#dot)" stroke="gray" /> | 11 <ellipse cx="200" cy="200" rx="20" ry="50" fill="url(#dot)" stroke="gray" /> |
12 </svg> | 12 </svg> |
OLD | NEW |