ladybird/Tests/LibWeb/Text/input/IntersectionObserver/unobserve-element-without-matching-observe.html

11 lines
276 B
HTML
Raw Normal View History

<body>
<script src="../include.js"></script>
<script>
test(() => {
let observer = new IntersectionObserver(function() {});
let div = document.createElement("div");
observer.unobserve(div);
println("PASS! (Didn't crash)");
});
</script>