summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-no-throw-requested-state.html
blob: c86cbe84a62294b2d4ce949bd3e9d6af6623c8dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://github.com/whatwg/html/pull/9142">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<dialog>hello</dialog>

<script>
test(() => {
  const dialog = document.querySelector('dialog');

  // calling close() on a dialog that is already closed should not throw.
  dialog.close();

  dialog.show();
  // calling show() on a dialog that is already showing non-modal should not throw.
  dialog.show();
  assert_throws_dom('InvalidStateError', () => dialog.showModal(),
    'Calling showModal() on a dialog that is already showing non-modal should throw.');
  dialog.close();

  dialog.showModal();
  assert_throws_dom('InvalidStateError', () => dialog.show(),
    'Calling show() on a dialog that is already showing modal should throw.');
  // calling showModal() on a dialog that is already showing modal should not throw.
  dialog.showModal();
});
</script>