summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/badging/non-fully-active.https.html
blob: d870e52273c0a310df3c3ab3f97693d7070a6cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<title>Badging: attempting to badge non-fully active document</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body></body>
<script>
promise_test(async t => {
  const iframe = document.createElement("iframe");
  document.body.appendChild(iframe);
  await new Promise(resolve => {
    iframe.onload = resolve;
    iframe.src = "about:blank";
  });
  const exceptionCtor = iframe.contentWindow.DOMException;
  const {navigator: nav} = iframe.contentWindow;
  iframe.remove();
  return promise_rejects_dom(t, "InvalidStateError", exceptionCtor, nav.setAppBadge(1));
}, "badging a non-fully active document should reject with InvalidStateError");
</script>