summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/modal-dialog-in-iframe.html
blob: f6440583fb7c5546405d6440a740e9a4d64d9100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<title>Modal dialog inside iframe should not generate box</title>
<link rel=match href="modal-dialog-in-iframe-ref.html">
<link rel=help href="https://github.com/w3c/csswg-drafts/issues/6939">
<link rel=help href="https://fullscreen.spec.whatwg.org/#new-stacking-layer">
<style>
dialog {
  background: red;
  border-color: red;
}
</style>
<iframe></iframe>
<script>
  const iframe = document.querySelector('iframe');
  const dialog = document.createElement('dialog');
  iframe.appendChild(dialog);
  dialog.showModal();
</script>