mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 17:16:12 +00:00
12 lines
201 B
XML
12 lines
201 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
||
|
<filter id="f">
|
||
|
<feGaussianBlur stdDeviation="0.1"/>
|
||
|
</filter>
|
||
|
|
||
|
<g filter="url(#f)">
|
||
|
<rect width="100" height="100" fill="lime"/>
|
||
|
</g>
|
||
|
|
||
|
</svg>
|