mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
361 B
XML
18 lines
361 B
XML
|
<svg xmlns="http://www.w3.org/2000/svg">
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("rect").setAttribute("filter", "url(#filter)");
|
||
|
document.getElementById("defs").setAttribute("fill", "red");
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<defs id="defs"><filter id="filter"/><rect id="rect"/></defs>
|
||
|
|
||
|
</svg>
|