mirror of
https://github.com/servo/servo.git
synced 2025-06-26 18:14:34 +01:00
13 lines
255 B
HTML
13 lines
255 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<dialog id="target">Dialog contents</dialog>
|
|
<style>
|
|
#target::backdrop {
|
|
opacity: 0.1;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<script>
|
|
const target = document.getElementById("target");
|
|
target.showModal();
|
|
</script>
|