Mypal/dom/smil/crashtests/615002-1.svg
2019-03-11 13:26:37 +03:00

17 lines
424 B
XML

<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<script>
function boom()
{
var a = document.getElementById("a");
a.removeAttribute('dur');
document.documentElement.appendChild(a);
// Force a sample
document.documentElement.setCurrentTime(0);
document.documentElement.removeAttribute("class");
}
window.addEventListener("load", boom, false);
</script>
<animate begin="-2s" dur="2s" id="a"/>
</svg>