Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg id="svg-root"
<g id="testmeta">
<title>SVG Filter Chains: Use Same FillPaint Input with Different Filter Regions</title>
<link rel="copyright"
<link rel="license"
<link rel="author"
title="Max Vujovic"
href="mailto:mvujovic@adobe.com"/>
<link rel="help"
<link rel="match"
href="different-FillPaint-filter-regions-ref.svg" />
<metadata class="flags">namespace svg</metadata>
<desc class="assert">
In an SVG filter chain, this test verifies that a FillPaint input is large
enough to cover the largest filter region in the chain. If the test
passes, you should see a green square.
</desc>
</g>
<g id="test-body-content">
<!-- Use a small filter region. -->
<filter id="f1" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse">
<!-- Turn the red square into a blue square. -->
<feColorMatrix in="FillPaint" type="hueRotate" values="180"/>
</filter>
<!-- Use a large filter region. -->
<filter id="f2" x="0" y="0" width="200" height="200" filterUnits="userSpaceOnUse">
<!-- Turn the red square into a green square. -->
<feColorMatrix in="FillPaint" type="hueRotate" values="90"/>
</filter>
<rect x="0" y="0" width="100" height="100" filter="url(#f1) url(#f2)" fill="red"/>
</g>
</svg>