summaryrefslogtreecommitdiffstats
path: root/dom/smil/crashtests/690994-1.svg
blob: 252fd2c264662ed1b6167ffe990d9c0e78c34f96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0"?>
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait" onload="go()">
<script>
<![CDATA[
function go() {
  document.documentElement.setCurrentTime(100);
}
function boom()
{
  document.documentElement.removeChild(document.getElementById("a"));
  document.documentElement.removeAttribute("class");
}
]]>
</script>
<animate id="a" begin="a.end; 99.9s" end="a.begin+0.2s" onend="boom()"/>
<animate id="a" begin="a.end; 99.9s" end="a.begin+0.2s"/>
</svg>