Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/filters/reftest.list
<!--
Any copyright is dedicated to the Public Domain.
-->
<title>Test 'feMorphology' with a zero value for its 'radius'</title>
<!--
A single zero value should not disable the primitive effect.
-->
<filter id="f1">
<feMorphology operator="erode" radius="0 50"/>
<feMorphology operator="erode" radius="50 0"/>
</filter>
<filter id="f2">
<feMorphology operator="erode" radius="50 50"/>
</filter>
<rect width="100%" height="100%" fill="none" stroke="lime" stroke-width="100"/>
<rect width="100%" height="100%" fill="red" filter="url(#f1)"/>
<rect width="100%" height="100%" fill="lime" filter="url(#f2)"/>
</svg>