Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <svg xmlns="http://www.w3.org/2000/svg" version="1.1"
6 xmlns:xlink="http://www.w3.org/1999/xlink">
8 <title>Testcase for checking that filter bounds include stroke width</title>
10 <!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=647687 -->
12 <defs>
13 <filter id="f1" filterUnits="userSpaceOnUse" x="150" y="150" width="200" height="200">
14 <feOffset in="SourceGraphic"/>
15 </filter>
16 </defs>
18 <rect height="100%" width="100%" fill="lime"/>
20 <rect x="150" y="150" height="200" width="200" fill="red"/>
22 <rect x="200" y="200" height="100" width="100" stroke-width="100"
23 fill="none" stroke="lime" filter="url(#f1)"/>
24 </svg>