mirror of
https://github.com/servo/servo.git
synced 2025-10-14 23:40:26 +01:00
19 lines
735 B
HTML
19 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>
|