mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
398 B
XML
15 lines
398 B
XML
|
<?xml version="1.0"?>
|
||
|
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
|
||
|
<script>
|
||
|
<![CDATA[
|
||
|
function boom()
|
||
|
{
|
||
|
document.documentElement.removeChild(document.getElementById("a"));
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
]]>
|
||
|
</script>
|
||
|
<animate id="a" begin="a.end; -0.1s" end="a.begin+0.2s" onend="boom()"/>
|
||
|
<animate id="a" begin="a.end; -0.1s" end="a.begin+0.2s"/>
|
||
|
</svg>
|