summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feMorphology-radius-zero-01.svg
blob: a6646b16f671f5784235e6258367e7e59e1a540d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!--
     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 zero value for its 'radius'</title>
  <!--
    From https://bugzilla.mozilla.org/show_bug.cgi?id=485786 and
    https://bugzilla.mozilla.org/show_bug.cgi?id=1432250

    The zero value should disable the primitive effect and output
    the input image.
  -->
  <filter id="f1">
    <feMorphology operator="erode" radius="0"/>
  </filter>
  <filter id="f2">
    <feMorphology operator="erode" radius="0 50"/>
  </filter>
  <rect width="100%" height="100%" fill="red"/>
  <rect width="50%" height="100%" fill="lime" filter="url(#f1)"/>
  <rect x="50%" width="50%" height="100%" fill="lime" filter="url(#f2)"/>
</svg>