summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feMorphology-radius-negative-02.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/feMorphology-radius-negative-02.svg')
-rw-r--r--layout/reftests/svg/filters/feMorphology-radius-negative-02.svg26
1 files changed, 26 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/feMorphology-radius-negative-02.svg b/layout/reftests/svg/filters/feMorphology-radius-negative-02.svg
new file mode 100644
index 000000000..afbb9ab61
--- /dev/null
+++ b/layout/reftests/svg/filters/feMorphology-radius-negative-02.svg
@@ -0,0 +1,26 @@
+<!--
+ Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/
+-->
+<svg xmlns="http://www.w3.org/2000/svg">
+ <title>Test 'feMorphology' with a negative value for its 'radius'</title>
+ <!--
+ From https://bugzilla.mozilla.org/show_bug.cgi?id=485786
+
+ The negative value should disable the primitive output, but should
+ not disable the entire filter effect.
+ -->
+ <filter id="f1">
+ <feMorphology operator="dilate" radius="-1" result="transparentBlack"/>
+ <feMerge>
+ <feMergeNode in="SourceGraphic"/>
+ <feMergeNode in="transparentBlack"/>
+ </feMerge>
+ </filter>
+ <filter id="f2">
+ <feMorphology operator="dilate" radius="-1"/>
+ </filter>
+ <rect width="100%" height="100%" fill="red"/>
+ <rect width="100%" height="100%" fill="lime" filter="url(#f1)"/>
+ <rect width="100%" height="100%" fill="red" filter="url(#f2)"/>
+</svg>