summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1330190-1.html
blob: fa14e0f74134b92a183714ac2d6a0eadc3ab0b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html class="reftest-wait">
<span id=a />
<script>
addEventListener("DOMContentLoaded", function(){
  a.animate([{"left": "38%"}], 100);
  a.appendChild(document.createElement("div"));
  document.documentElement.classList.remove("reftest-wait");
});
</script>
</html>