ladybird/Tests/LibWeb/Layout/input/dialog-open-modal.html
Luke Warlow 63a5ff70e5 LibWeb: Implement :modal pseudo class
Adds the :modal pseudo class which matches dialogs opened with
showModal().
2024-07-08 11:34:06 +02:00

16 lines
No EOL
284 B
HTML

<style>
:modal {
display: flex;
}
</style>
<dialog id="modal">
<span>I'm a node</span>
</dialog>
<script>
document.addEventListener("DOMContentLoaded", () => {
let modal = document.getElementById('modal');
modal.showModal();
});
</script>