mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
448 B
XML
19 lines
448 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var f = document.getElementById("filter1");
|
||
|
f.appendChild(document.createElementNS("http://www.w3.org/2000/svg", "feImage"));
|
||
|
f.appendChild(document.getElementById("rect"));
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<filter id="filter1"/><rect id="rect" filter="url(#filter1)"/>
|
||
|
|
||
|
</svg>
|