Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Side by Side Diff: LayoutTests/svg/custom/non-scaling-stroke-on-empty-shapes.html

Issue 307643003: Don't render empty shapes with non-scaling-stroke (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update TEs. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698