summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/1353529-inner.html
blob: 2c10a1e3da339d4b80a5d0fb89b63d6c6956bb70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
<body onload="boom()">
<div id="target"></div>
<script>
    function boom() {
        var io = new IntersectionObserver(function () { }, { });
        io.observe(document.getElementById('target'));
    }
</script>
</body>
</html>