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

Unified Diff: LayoutTests/svg/filters/feMorphology-negative-radius-expected.html

Issue 1344283004: Update handling of negative radius for feMorphology (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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/svg/filters/feMorphology-negative-radius-expected.html
diff --git a/LayoutTests/svg/filters/feMorphology-negative-radius-expected.html b/LayoutTests/svg/filters/feMorphology-negative-radius-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..6122c34cbf7f20fa68113e306223469b13c859b8
--- /dev/null
+++ b/LayoutTests/svg/filters/feMorphology-negative-radius-expected.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<svg>
+ <filter id="dilate">
+ <feMorphology operator="dilate" radius="0"/>
+ </filter>
+ <rect width="100" height="100" fill="green" filter="url(#dilate)"/>
+
+ <filter id="erode">
+ <feMorphology operator="erode" radius="0"/>
+ </filter>
+ <rect width="100" height="100" fill="green" filter="url(#erode)" x="100"/>
+</svg>
« no previous file with comments | « LayoutTests/svg/filters/feMorphology-negative-radius.html ('k') | Source/core/svg/SVGFEMorphologyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698