3 rect, circle, ellipse {
4 vector-effect: non-scaling-stroke;
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"/>