| <!DOCTYPE html> | |
| <html> | |
| <meta charset="utf-8"> | |
| <head> | |
| <title>Shown modal dialog where the popover attribute is removed</title> | |
| </head> | |
| <body> | |
| <dialog popover style="padding: 2em"></dialog> | |
| <script> | |
| const d = document.querySelector("dialog"); | |
| d.showModal(); | |
| </script> | |
| </body> | |
| <html> | |