Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/base/crashtests/crashtests.list
<!DOCTYPE html>
<html>
<body>
<iframe id="iframe" src="1370968-inner.xhtml"></iframe>
<script>
    var io = new IntersectionObserver(function () {
    }, { });
    var iframe = document.getElementById('iframe');
    iframe.onload = function () {
        io.observe(iframe.contentDocument.getElementById('target'));
    };
</script>
</body>
</html>