summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/crashtests/1323119-1.html
blob: fd979822b8263fc49e329fe865e0136ec9d9c638 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<script>
addEventListener("DOMContentLoaded", function() {
  let a = document.createElement("th");
  document.documentElement.appendChild(a);
  a.animate([{"mask": "repeat-y "}], 484);
  document.documentElement.classList.remove("reftest-wait");
});
</script>
</body>
</html>