mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
Otherwise the layout tree will still contain the top layer element(s). Fixes Steam Events & Announcements `<dialog>` modal visually not fully disappearing upon removal.
13 lines
305 B
HTML
13 lines
305 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
</body>
|
|
<script>
|
|
const dialog = document.createElement("dialog");
|
|
dialog.innerText = "hello world";
|
|
document.body.appendChild(dialog);
|
|
dialog.showModal();
|
|
document.body.offsetWidth;
|
|
document.body.removeChild(dialog);
|
|
document.body.offsetWidth;
|
|
</script>
|