summaryrefslogtreecommitdiffstats
path: root/dom/smil/crashtests/669225-2.svg
blob: 00d52c1f4c0fb227b7d66d00f68667be8d19059c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>

<svg xmlns="http://www.w3.org/2000/svg">

<script type="text/javascript">
<![CDATA[

function boom()
{
  var a = document.getElementById("a");
  a.removeAttribute("end");
  a.setAttribute("end", "a.begin");
}

window.addEventListener("load", boom, false);

]]>
</script>

<animate end="0" id="a" onend="boom()"/>
</svg>