mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
17 lines
370 B
XML
17 lines
370 B
XML
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
|
|
onload="go()">
|
|
<script>
|
|
|
|
function go() {
|
|
var f = document.getElementById('f');
|
|
var fm = document.getElementById('fm');
|
|
f.appendChild(fm.cloneNode(1));
|
|
}
|
|
|
|
</script>
|
|
<filter id="f">
|
|
<feMorphology id="fm" radius="2147483500"/>
|
|
</filter>
|
|
<rect height="28" width="256" filter="url(#f)" />
|
|
</svg>
|