1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/smil/crashtests/523188-1.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +<?xml version="1.0"?> 1.5 +<svg xmlns="http://www.w3.org/2000/svg" 1.6 + class="reftest-wait" 1.7 + onload="setTimeout(removeNode, 0)"> 1.8 + <script> 1.9 + function removeNode() { 1.10 + var node = document.getElementById("myRect"); 1.11 + node.parentNode.removeChild(node); 1.12 + document.documentElement.removeAttribute("class"); 1.13 + } 1.14 + </script> 1.15 + <rect id="myRect" x="20" y="20" height="50" width="50" stroke="blue"> 1.16 + <animate attributeName="stroke-width" from="1" to="9" begin="0s" dur="2s"/> 1.17 + </rect> 1.18 +</svg>