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
This commit is contained in:
Marcos Cáceres 2023-03-30 11:14:14 +00:00 коммит произвёл moz-wptsync-bot
Родитель e3cf6a2de0
Коммит 333d288deb
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,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>