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/linked-filter-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<title>Test for linked filter</title>
<defs>
<filter id="filter01" filterUnits="objectBoundingBox" x="0" y="0" width="1" height="1">
<feFlood flood-color="lime" />
</filter>
<filter id="filter02" xlink:href="#filter01"/>
</defs>
<rect width="100%" height="100%" fill="red"/>
<rect width="100%" height="100%" filter="url(#filter02)"/>
</svg>