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

Side by Side Diff: LayoutTests/svg/filters/feGaussianBlur-negative-deviation-expected.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
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">
3 <defs>
4 <filter id="f1">
5 <feGaussianBlur stdDeviation="0"/>
6 </filter>
7 <filter id="f2">
8 <feGaussianBlur stdDeviation="0 0"/>
9 </filter>
10 <filter id="f3">
11 <feGaussianBlur stdDeviation="1 0"/>
12 </filter>
13 <filter id="f4">
14 <feGaussianBlur stdDeviation="0 1"/>
15 </filter>
16 </defs>
17 <rect x="50" y="20" width="10" height="10" fill="green" filter="url(#f1)"/>
18 <rect x="50" y="40" width="10" height="10" fill="green" filter="url(#f2)"/>
19 <rect x="50" y="60" width="10" height="10" fill="green" filter="url(#f3)"/>
20 <rect x="50" y="80" width="10" height="10" fill="green" filter="url(#f4)"/>
6 </svg> 21 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/filters/feGaussianBlur-negative-deviation.svg ('k') | Source/core/svg/SVGFEDropShadowElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698