diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/fenced-frame/badging.https.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/badging.https.html')
-rw-r--r-- | testing/web-platform/tests/fenced-frame/badging.https.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/badging.https.html b/testing/web-platform/tests/fenced-frame/badging.https.html new file mode 100644 index 0000000000..93683e096c --- /dev/null +++ b/testing/web-platform/tests/fenced-frame/badging.https.html @@ -0,0 +1,79 @@ +<!DOCTYPE html> +<title>Test Badging API</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/resources/testdriver.js"></script> +<script src="/resources/testdriver-vendor.js"></script> +<script src="/common/utils.js"></script> +<script src="/common/dispatcher/dispatcher.js"></script> +<script src="resources/utils.js"></script> + +<body> +<script> +const createRemoteFunctionForServiceWorkerTest = () => { + return async (method, service_worker_url) => { + const getController = () => { + if (navigator.serviceWorker.controller) { + return navigator.serviceWorker.controller; + } + return new Promise(resolve => { + navigator.serviceWorker.addEventListener('controllerchange', () => { + resolve(navigator.serviceWorker.controller); + }); + }); + }; + + await navigator.serviceWorker.register( + service_worker_url, { scope: location.href }); + const ctrl = await getController(); + + return new Promise(resolve => { + ctrl.postMessage(method); + navigator.serviceWorker.onmessage = e => { + resolve(e.data.name); + } + }); + } +} + +promise_test(async () => { + const frame = attachFencedFrameContext(); + const error_name = await frame.execute(() => { + return navigator.setAppBadge(1).catch(e => e.name); + }); + assert_equals(error_name, + "NotAllowedError", + "The Badge API should cause exception in a fencedfarme"); +}, 'setAppBadge should fail inside a fenced frame'); + +promise_test(async () => { + const frame = attachFencedFrameContext(); + const error_name = await frame.execute(() => { + return navigator.clearAppBadge().catch(e => e.name); + }); + assert_equals(error_name, + "NotAllowedError", + "The Badge API should cause exception in a fencedfarme"); +}, 'clearAppBadge should fail inside a fenced frame'); + +promise_test(async () => { + const frame = attachFencedFrameContext(); + const error_name = await frame.execute( + createRemoteFunctionForServiceWorkerTest(), + ['setAppBadge', 'badging-sw.js']); + assert_equals(error_name, "NotAllowedError", + "The Badge API should cause exception from a service worker " + + "in a fencedfarme"); +}, 'setAppBadge should fail from a service worker inside a fenced frame'); + +promise_test(async () => { + const frame = attachFencedFrameContext(); + const error_name = await frame.execute( + createRemoteFunctionForServiceWorkerTest(), + ['clearAppBadge', 'badging-sw.js']); + assert_equals(error_name, "NotAllowedError", + "The Badge API should cause exception from a service worker " + + "in a fencedfarme"); +}, 'clearAppBadge should fail from a service worker inside a fenced frame'); +</script> +</body> |