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

Side by Side Diff: LayoutTests/svg/css/resources/intrinsic-ratio.svg

Issue 186913003: Fix infinite recursion in computePreferredLogicalWidths. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
1 <?xml version="1.0" standalone="no"?> 1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
3 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> 3 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4 <svg version="1.0" 4 <svg version="1.0"
5 viewBox="0 0 1000 250" preserveAspectRatio="xMinYMin meet" 5 viewBox="0 0 1000 250" preserveAspectRatio="xMinYMin meet"
6 xmlns="http://www.w3.org/2000/svg"> 6 xmlns="http://www.w3.org/2000/svg">
7 <!-- This rectangle goes from (0,0) to (1500,1000) in user space. 7 <!-- This rectangle goes from (0,0) to (1500,1000) in user space.
8 Because of the viewBox attribute above, 8 Because of the viewBox attribute above,
9 the rectangle will end up filling the entire area 9 the rectangle will end up filling the entire area
10 reserved for the SVG content. --> 10 reserved for the SVG content. -->
11 <rect x="0" y="0" width="1000" height="250" 11 <rect x="0" y="0" width="1000" height="250"
12 fill="lime" stroke="green" stroke-width="12" /> 12 fill="lime" stroke="green" stroke-width="12" />
13 <!-- A large, red triangle --> 13 <!-- A large, red triangle -->
14 <path fill="green" d="M 500,50 L 150,200 L 850,200 z"/> 14 <path fill="green" d="M 500,50 L 150,200 L 850,200 z"/>
15 </svg> 15 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698