https://html.spec.whatwg.org/multipage/popover.html#check-popover-validity > element is a [dialog](https://html.spec.whatwg.org/multipage/interactive-elements.html#the-dialog-element) element and has an [open](https://html.spec.whatwg.org/multipage/interactive-elements.html#attr-details-open) attribute This check doesn't cover this case (in terms of top layer conflicts): ```html <script> onload = () => { dialog0.showModal(); dialog0.open = false; dialog0.showPopover(); }; </script> <dialog id="dialog0" popover=""></dialog> ``` Should we change this check to checking whether the dialog is in modal state instead? cc @annevk @domenic @mfreed7 @josepharhar @Emilio @cathiechen