Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/crashtests/firefox-bug-1724237.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<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>