mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-09 01:31:02 +00:00
11 lines
276 B
HTML
11 lines
276 B
HTML
|
|
<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>
|