blob: a358f7e541a73c75477ff6af7b6b5c03c3d7b9dd [file] [log] [blame]
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>Test case for scaled SVG with filter region</title>
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=765107 -->
</head>
<body style="-moz-transform: scale(1.4)">
<div style="position: absolute; top: 20px; left: 200px">
<svg width="200" viewBox="0 0 222 222">
<filter id="filter" x="-20%" width="140%">
<feMerge>
<feMergeNode/>
</feMerge>
</filter>
<rect fill="green" x="120" y="100" width="100" height="120"
filter="url(#filter)"/>
<rect fill="none" stroke="black" stroke-width="4"
x="120" y="100" width="100" height="120"/>
</svg>
</div>
</body>
</html>