Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/filters/svg-filter-chains/clip-output.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg id="svg-root"
<g id="testmeta">
<title>SVG Filter Chains: Clip Filter Output</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="clip-output-ref.svg" />
<metadata class="flags">namespace svg</metadata>
<desc class="assert">
In an SVG filter chain, this test verifies a filter region clips its
filter's output into the next filter. If the test passes, you should see a
green square.
</desc>
</g>
<g id="test-body-content">
<filter id="flood" x="0" y="0" width="100" height="100" filterUnits="userSpaceOnUse">
<!--
Create a red square followed by a blue square. The blue square should be
clipped away due to this filter's filter region.
-->
<feFlood result="red" flood-color="red" x="0" y="0" width="100" height="100"/>
<feFlood result="blue" flood-color="blue" x="100" y="0" width="100" height="100"/>
<feMerge>
<feMergeNode in="red"/>
<feMergeNode in="blue"/>
</feMerge>
</filter>
<filter id="hue-rotate" x="0" y="0" width="200" height="100" filterUnits="userSpaceOnUse">
<!--
Turn the red square green. If the blue square wasn't clipped by the
previous filter's filter region, it will turn red.
-->
<feColorMatrix type="hueRotate" values="90" style="color-interpolation-filters:sRGB"/>
</filter>
<rect x="0" y="0" width="100" height="100" filter="url(#flood) url(#hue-rotate)"/>
</g>
</svg>