summaryrefslogtreecommitdiffstats
path: root/dom/smil/crashtests/615002-1.svg
blob: eb9a293199c53ce5ee62cc81ebba6fa496ef2f3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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>