Files
tubestation/testing/web-platform/tests/badging/non-fully-active.https.html
Marcos Cáceres 063b6d42ec Bug 1826486 [wpt PR 39385] - badging: test clearAppBadge() and other setAppBadge() cases, a=testonly
Automatic update from web-platform-tests
badging: add cases for clearAppBadge() (#39385)

--

wpt-commits: 68f7e630c2646830a3ee274e21a3efcb001fbd65
wpt-pr: 39385
2024-06-14 07:16:50 +00:00

47 lines
1.1 KiB
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();
await promise_rejects_dom(
t,
"InvalidStateError",
exceptionCtor,
nav.setAppBadge()
);
await promise_rejects_dom(
t,
"InvalidStateError",
exceptionCtor,
nav.setAppBadge(1)
);
await promise_rejects_dom(
t,
"InvalidStateError",
exceptionCtor,
nav.setAppBadge(0)
);
await promise_rejects_dom(
t,
"InvalidStateError",
exceptionCtor,
nav.clearAppBadge()
);
}, "badging a non-fully active document should reject with InvalidStateError");
</script>