summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/top-layer-remove-popover-attribute-ref.html
blob: 7aadaf51b72692f99f0e391d8c6a6be807e243c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!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>