summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/svg-filter-chains/simple-chain.svg
blob: e391bf8e0394256c4a2d054d4e3372934015208d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
  <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>