Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/interactive-elements/the-dialog-element/dialog-open-pseudo-invalidation.html - WPT Dashboard Interop Dashboard
<!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>