1
0
Fork 0
firefox/testing/web-platform/tests/badging/non-fully-active.https.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

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