summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fenced-frame/badging.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/fenced-frame/badging.https.html
parentInitial commit. (diff)
downloadfirefox-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.html79
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>