mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-09 02:21:53 +00:00
11 lines
292 B
HTML
11 lines
292 B
HTML
<!DOCTYPE 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>
|