1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/smil/crashtests/551620-1.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,21 @@ 1.4 +<svg xmlns="http://www.w3.org/2000/svg"> 1.5 + 1.6 +<animate id="x" begin="y.end"/> 1.7 +<animate id="y"/> 1.8 + 1.9 +<script> 1.10 + 1.11 +function boom() 1.12 +{ 1.13 + var x = document.getElementById("x"); 1.14 + var y = document.getElementById("y"); 1.15 + y.appendChild(x); 1.16 + y.setAttributeNS(null, "dur", "0.5s"); 1.17 + y.removeAttributeNS(null, "dur"); 1.18 +} 1.19 + 1.20 +window.addEventListener("load", boom, false); 1.21 + 1.22 +</script> 1.23 + 1.24 +</svg>