ladybird/Tests/LibWeb/Layout/input/dialog-open-non-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

9 lines
112 B
HTML

<style>
:modal {
display: flex;
}
</style>
<dialog open>
<span>I'm a node</span>
</dialog>