blob: 851b32f0a9d03223136bd93bd08f3b1e20e64e78 [file] [log] [blame]
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<filter id="Default">
<feImage href="resources/green.png" />
</filter>
<filter id="Fitted" primitiveUnits="objectBoundingBox">
<feImage href="resources/green.png" x="0" y="0" width="100%" height="100%" preserveAspectRatio="none"/>
</filter>
<filter id="Shifted">
<feImage href="resources/green.png" x="500" y="5"/>
</filter>
</defs>
<g>
<rect x="50" y="25" width="100" height="200" filter="url(#Default)"/>
<rect x="50" y="25" width="100" height="200" fill="none" stroke="green"/>
<rect x="250" y="25" width="100" height="200" filter="url(#Fitted)"/>
<rect x="250" y="25" width="100" height="200" fill="none" stroke="green"/>
<rect x="450" y="25" width="100" height="200" filter="url(#Shifted)"/>
<rect x="450" y="25" width="100" height="200" fill="none" stroke="green"/>
</g>
</svg>