summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/svg-filter-chains/multiple-primitives-per-filter.svg
blob: 9bdf8fe2c062f7325aa652b42799b2fc7cf94270 (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
<!--
     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-red">
    <!-- Turn the black rect into a yellow rect. -->
    <feFlood x="20" y="20" width="100" height="100" flood-color="#ffff00"/>
    <!-- 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-and-hue-rotate">
    <!-- Blur the red rect. -->
    <feGaussianBlur stdDeviation="3" x="10" y="10" width="120" height="120"/>
    <!-- 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-red) url(#blur-and-hue-rotate)"/>
</svg>