summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/svg-filter-chains/long-chain.svg
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/svg/filters/svg-filter-chains/long-chain.svg')
-rw-r--r--layout/reftests/svg/filters/svg-filter-chains/long-chain.svg28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/svg/filters/svg-filter-chains/long-chain.svg b/layout/reftests/svg/filters/svg-filter-chains/long-chain.svg
new file mode 100644
index 0000000000..00f0c9dc62
--- /dev/null
+++ b/layout/reftests/svg/filters/svg-filter-chains/long-chain.svg
@@ -0,0 +1,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>