blob: 7aadaf51b72692f99f0e391d8c6a6be807e243c7 [file] [log] [blame] [edit]
<!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>