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

Side by Side Diff: LayoutTests/svg/filters/feDropShadow-negative-deviation.svg

Issue 1350903009: Update handling of negative std.dev for feGaussianblur/feDropShadow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feDropShadow-negative-deviation-expected.svg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
3 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
5 <svg xmlns="http://www.w3.org/2000/svg" version="1.1"> 2 <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
6 <defs> 3 <defs>
7 <filter id="f1"> 4 <filter id="f1">
8 <feDropShadow stdDeviation="-1" /> 5 <feDropShadow stdDeviation="-1" />
9 </filter> 6 </filter>
10 <filter id="f2"> 7 <filter id="f2">
11 <feDropShadow stdDeviation="-1 -1" /> 8 <feDropShadow stdDeviation="-1 -1" />
12 </filter> 9 </filter>
13 <filter id="f3"> 10 <filter id="f3">
14 <feDropShadow stdDeviation="1 -1" /> 11 <feDropShadow stdDeviation="1 -1" />
15 </filter> 12 </filter>
16 <filter id="f4"> 13 <filter id="f4">
17 <feDropShadow stdDeviation="-1 1" /> 14 <feDropShadow stdDeviation="-1 1" />
18 </filter> 15 </filter>
19 </defs> 16 </defs>
20 <rect x="50" y="20" width="10" height="10" fill="green" filter="url(#f1)" /> 17 <rect x="50" y="20" width="10" height="10" fill="green" filter="url(#f1)" />
21 <rect x="50" y="40" width="10" height="10" fill="green" filter="url(#f2)" /> 18 <rect x="50" y="40" width="10" height="10" fill="green" filter="url(#f2)" />
22 <rect x="50" y="60" width="10" height="10" fill="green" filter="url(#f3)" /> 19 <rect x="50" y="60" width="10" height="10" fill="green" filter="url(#f3)" />
23 <rect x="50" y="80" width="10" height="10" fill="green" filter="url(#f4)" /> 20 <rect x="50" y="80" width="10" height="10" fill="green" filter="url(#f4)" />
24 </svg> 21 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feDropShadow-negative-deviation-expected.svg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698