2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2023-11-20 16:03:43 -03:00
|
|
|
<body>
|
|
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
let observer = new MutationObserver(function() {});
|
|
|
|
|
observer.observe(document.body, { attributes: true, childList: true, subtree: true });
|
|
|
|
|
|
|
|
|
|
let div = document.createElement("div");
|
|
|
|
|
document.body.appendChild(div);
|
|
|
|
|
div.remove();
|
|
|
|
|
println("PASS! (Didn't crash)");
|
|
|
|
|
});
|
|
|
|
|
</script>
|