summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/svg-filter-chains/long-chain.svg
blob: 00f0c9dc6229bae9e38e511e130276179b4e88a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!--
     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="flood-with-yellow">
    <!-- Turn the black rect into a yellow rect. -->
    <feFlood x="20" y="20" width="100" height="100" flood-color="#ffff00"/>
  </filter>
  <filter id="extract-red-channel">
    <!-- Turn the yellow rect into a red rect. -->
    <feComponentTransfer x="0" y="0" width="120" height="120">
      <feFuncR type="identity"/>
      <feFuncG type="table" tableValues="0 0"/>
      <feFuncB type="table" tableValues="0 0"/>
      <feFuncA type="identity"/>
    </feComponentTransfer>
  </filter>
  <filter id="blur">
    <!-- Blur the red rect. -->
    <feGaussianBlur stdDeviation="3" x="10" y="10" width="120" height="120"/>
  </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" filter="url(#flood-with-yellow) url(#extract-red-channel) url(#blur) url(#hue-rotate)"/>
</svg>