mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-05 08:31:51 +00:00
16 lines
No EOL
284 B
HTML
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> |