Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/filters/reftest.list
<!--
Any copyright is dedicated to the Public Domain.
-->
<desc>
This test checks that the filtering with a clipPath doesn't interact
badly with transforms.
</desc>
<defs>
<clipPath id="clipPath">
<rect x="100" width="100" height="100"/>
</clipPath>
<filter id="filter"><feGaussianBlur stdDeviation="0.001"/></filter>
</defs>
<rect width="100%" height="100%" fill="lime"/>
<g transform="translate(50, 0)">
<!-- This 3-rect setup is to show red *both* if too much or if too little is clipped. -->
<rect x="150" width="100" height="100" fill="red"/>
<g clip-path="url(#clipPath)" filter="url(#filter)" transform="translate(50, 0)">
<rect x="-20" y="-20" width="140" height="140" fill="red"/>
<rect x="100" width="100" height="100" fill="lime"/>
</g>
</g>
</svg>