summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/svg-filter-chains/simple-chain-ref.svg
blob: 41948490546ade6b8abea9b56cec76896ac7718a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<svg xmlns="http://www.w3.org/2000/svg">
  <!-- Test multiple SVG filters chained together against a single SVG filter. -->
  <filter id="blur-and-hue-rotate">
    <!-- Blur the red rect. -->
    <feGaussianBlur stdDeviation="3"/>
    <!-- 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-and-hue-rotate)"/>
</svg>