mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
448 B
XML
13 lines
448 B
XML
|
<!--
|
||
|
Any copyright is dedicated to the Public Domain.
|
||
|
http://creativecommons.org/licenses/publicdomain/
|
||
|
-->
|
||
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
<defs>
|
||
|
<filter id="f1" x="0" y="0" width="-100" height="-100" filterUnits="userSpaceOnUse" primitiveUnits="userSpaceOnUse">
|
||
|
<feFlood flood-color="lime" x="0" y="0" width="100%" height="100%"/>
|
||
|
</filter>
|
||
|
</defs>
|
||
|
<rect x="10" y="10" width="10" height="10" filter="url(#f1)"/>
|
||
|
</svg>
|