Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/filters/svg-filter-chains/simple-chain.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<filter id="blur">
<!-- Blur the red rect. -->
<feGaussianBlur stdDeviation="3"/>
</filter>
<filter id="hue-rotate">
<!-- Turn the red rect into a green rect. -->
<feColorMatrix type="hueRotate" values="90"/>
</filter>
<rect x="20" y="20" width="100" height="100" fill="#ff0000" filter="url(#blur) url(#hue-rotate)"/>
</svg>