summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feMorphology-radius-negative-01.svg
blob: 3b9f9000f904fe0ec49e2fcd87936aecce6735db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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="erode" radius="-1" result="transparentBlack"/>
    <feMerge>
      <feMergeNode in="SourceGraphic"/>
      <feMergeNode in="transparentBlack"/>
    </feMerge>
  </filter>
  <filter id="f2">
    <feMorphology operator="erode" 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>