Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <svg width="100%" height="100%" preserveAspectRatio="none" |
michael@0 | 2 | xmlns="http://www.w3.org/2000/svg" |
michael@0 | 3 | xmlns:xlink="http://www.w3.org/1999/xlink"> |
michael@0 | 4 | |
michael@0 | 5 | <title>Testcase for scaled filter with non-integer x and y and objectBoundingBox</title> |
michael@0 | 6 | <defs> |
michael@0 | 7 | <filter id="filter" filterUnits="objectBoundingBox" x="0.5" y="0.5" width="0.25" height="0.25"> |
michael@0 | 8 | <feFlood flood-color="red" width="1" height="1" /> |
michael@0 | 9 | </filter> |
michael@0 | 10 | </defs> |
michael@0 | 11 | |
michael@0 | 12 | <rect width="100%" height="100%" fill="lime"/> |
michael@0 | 13 | <g transform="scale(400)"> |
michael@0 | 14 | <rect width="1" height="1" filter="url(#filter)" /> |
michael@0 | 15 | </g> |
michael@0 | 16 | <rect x="200" y="200" width="100" height="100" fill="lime" /> |
michael@0 | 17 | |
michael@0 | 18 | </svg> |