top-layer-remove-popover-attribute.html (624B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <meta name="assert" content="Removing the popover attribute of a hidden popover should not remove the dialog from the top layer."> 5 <head> 6 <title>Shown modal dialog where the popover attribute is removed</title> 7 <link rel="help" href="https://html.spec.whatwg.org/multipage/popover.html#hide-popover-algorithm"> 8 <link rel="match" href="top-layer-remove-popover-attribute-ref.html"> 9 </head> 10 <body> 11 <dialog popover style="padding: 2em"></dialog> 12 <script> 13 const d = document.querySelector("dialog"); 14 d.showModal(); 15 d.popover = null; 16 </script> 17 </body> 18 <html>