OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <style> |
| 3 rect, circle, ellipse { |
| 4 vector-effect: non-scaling-stroke; |
| 5 stroke: red; |
| 6 fill: red; |
| 7 } |
| 8 </style> |
| 9 <svg width="100" height="200" style="background-color: lime"> |
| 10 <!-- Neither of these should render. --> |
| 11 <rect x="10" y="20" width="0" height="10"/> |
| 12 <rect x="10" y="40" rx="1" width="0" height="10"/> |
| 13 <rect x="10" y="60" ry="1" width="0" height="10"/> |
| 14 <circle cx="10" cy="80" r="0"/> |
| 15 <ellipse cx="10" cy="100" rx="0" ry="5"/> |
| 16 <ellipse cx="10" cy="120" rx="5" ry="0"/> |
| 17 </svg> |
OLD | NEW |