Files
tubestation/testing/web-platform/tests/badging/non-fully-active.https.html
Marcos Cáceres 6317692567 Bug 1824903 [wpt PR 39239] - Badging: test non-fully-active document, a=testonly
Automatic update from web-platform-tests
Badging: test non-fully-active document (#39239)

--

wpt-commits: 2b84dd9a923f1de6bb3b42163122f9c6118fb66c
wpt-pr: 39239
2023-04-12 11:22:06 +00:00

20 lines
735 B
HTML

<!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>