Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="utf-8">
<link rel="match" href="dialog-open-pseudo-invalidation-ref.html">
<p>The dialog should be open and green:</p>
<dialog>Dialog</dialog>
<style>
dialog {
background-color: red;
}
dialog:open {
background-color: green;
}
</style>
<script>
const d = document.querySelector('dialog');
d.show();
d.blur();
</script>