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.
-->
<svg xmlns="http://www.w3.org/2000/svg">
<title>Test 'feMorphology' with a zero value for its 'radius'</title>
<!--
The zero value should disable the primitive effect and output
the input image.
-->
<filter id="f1">
<feMorphology operator="erode" radius="0"/>
</filter>
<rect width="100%" height="100%" fill="red"/>
<rect width="100%" height="100%" fill="lime" filter="url(#f1)"/>
</svg>