summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/crashtests/firefox-bug-1724237.html
blob: 8d8fd9c44f330cf00fba1a5c495b59613129c3c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<link rel=help href="https://bugzilla.mozilla.org/show_bug.cgi?id=1724237">
<svg>
  <animateTransform id="id_0"></animateTransform>
  <rect id="id_1"></rect>
</svg>
<script>
  new IntersectionObserver((e1, e2) => {
    e2.observe(document.getElementById("id_1"))
  }).observe(document.getElementById("id_0"))
</script>