mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
437 B
XML
22 lines
437 B
XML
|
<?xml version="1.0"?>
|
||
|
|
||
|
<svg xmlns="http://www.w3.org/2000/svg"><script>
|
||
|
<![CDATA[
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var r = document.documentElement;
|
||
|
var s = document.createElementNS("http://www.w3.org/2000/svg", "set");
|
||
|
s.setAttributeNS(null, "begin", "1s");
|
||
|
r.appendChild(s);
|
||
|
r.setCurrentTime(2);
|
||
|
document.removeChild(r);
|
||
|
r.setCurrentTime(0);
|
||
|
s.beginElementAt(0);
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
]]>
|
||
|
</script></svg>
|