top-layer-remove-popover-attribute-ref.html (298B)
1 <!DOCTYPE html> 2 <html> 3 <meta charset="utf-8"> 4 <head> 5 <title>Shown modal dialog where the popover attribute is removed</title> 6 </head> 7 <body> 8 <dialog popover style="padding: 2em"></dialog> 9 <script> 10 const d = document.querySelector("dialog"); 11 d.showModal(); 12 </script> 13 </body> 14 <html>