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

Unified Diff: LayoutTests/svg/filters/feMorphology-negative-radius.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
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feMorphology-negative-radius-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/filters/feMorphology-negative-radius.html
diff --git a/LayoutTests/svg/filters/feMorphology-negative-radius.html b/LayoutTests/svg/filters/feMorphology-negative-radius.html
new file mode 100644
index 0000000000000000000000000000000000000000..299342cce3a68da477cd3a2e53650ca75ad7bc9a
--- /dev/null
+++ b/LayoutTests/svg/filters/feMorphology-negative-radius.html
@@ -0,0 +1,12 @@
+<!DOCTYPE html>
+<svg>
+ <filter id="dilate">
+ <feMorphology operator="dilate" radius="-1"/>
+ </filter>
+ <rect width="100" height="100" fill="green" filter="url(#dilate)"/>
+
+ <filter id="erode">
+ <feMorphology operator="erode" radius="-1"/>
+ </filter>
+ <rect width="100" height="100" fill="green" filter="url(#erode)" x="100"/>
+</svg>
« no previous file with comments | « no previous file | LayoutTests/svg/filters/feMorphology-negative-radius-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698