1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/smil/crashtests/526536-1.svg Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<svg xmlns="http://www.w3.org/2000/svg" 1.5 + class="reftest-wait" 1.6 + onload="setTimeout('boom()', 0)"> 1.7 +<script type="text/javascript"> 1.8 +<![CDATA[ 1.9 +function boom() 1.10 +{ 1.11 + document.getElementById("anim").setAttribute("fill", "freeze"); 1.12 + document.documentElement.removeAttribute("class"); 1.13 +} 1.14 +]]> 1.15 +</script> 1.16 + <g transform="translate(50 50)"> 1.17 + <circle r="40" style="fill: yellow; stroke: black; stroke-width: 1"> 1.18 + <animate id="anim" attributeName="cx" attributeType="XML" 1.19 + values="0; 200" dur="2s" begin="-1s" repeatCount="0.5"/> 1.20 + </circle> 1.21 + </g> 1.22 +</svg>