summaryrefslogtreecommitdiffstats
path: root/dom/webshare/test
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /dom/webshare/test
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dom/webshare/test')
-rw-r--r--dom/webshare/test/mochitest/mochitest.ini6
-rw-r--r--dom/webshare/test/mochitest/test_navigator_share_consume_user_activation.html43
2 files changed, 49 insertions, 0 deletions
diff --git a/dom/webshare/test/mochitest/mochitest.ini b/dom/webshare/test/mochitest/mochitest.ini
new file mode 100644
index 0000000000..b01bc8d36e
--- /dev/null
+++ b/dom/webshare/test/mochitest/mochitest.ini
@@ -0,0 +1,6 @@
+[DEFAULT]
+prefs =
+ dom.webshare.enabled=true
+scheme = https
+skip-if = os == 'win' # https://bugzilla.mozilla.org/show_bug.cgi?id=1641280
+[test_navigator_share_consume_user_activation.html]
diff --git a/dom/webshare/test/mochitest/test_navigator_share_consume_user_activation.html b/dom/webshare/test/mochitest/test_navigator_share_consume_user_activation.html
new file mode 100644
index 0000000000..9cb3f04d96
--- /dev/null
+++ b/dom/webshare/test/mochitest/test_navigator_share_consume_user_activation.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<title>Web Share: consume transient activation</title>
+<script src="/tests/SimpleTest/SimpleTest.js"></script>
+<script src="/tests/SimpleTest/EventUtils.js"></script>
+<link rel="stylesheet" href="/tests/SimpleTest/test.css" />
+<body>
+ <button id="share">Share</button>
+</body>
+<script>
+ // TODO: add a task that tests share() consume the transient user activation.
+ // Because OS-level prompt can't be cancelled, it's currently not possible to
+ // test this. We need to add a Web share Mocking service:
+ // https://bugzilla.mozilla.org/show_bug.cgi?id=1646229
+
+ // test that share() would be blocked with an already-consumed-activation.
+ add_task(async function blockedIfAlreadyConsumed() {
+ const wrappedDoc = SpecialPowers.wrap(document);
+ const button = document.getElementById("share");
+
+ // Kick off transient activation
+ synthesizeMouseAtCenter(button, {});
+
+ ok(
+ wrappedDoc.hasValidTransientUserGestureActivation,
+ "Activated by a gesture"
+ );
+
+ wrappedDoc.consumeTransientUserGestureActivation();
+
+ try {
+ const sharePromise = navigator.share({ title: "test" });
+ await sharePromise;
+ ok(false, "must throw because activation was already consumed");
+ } catch (err) {
+ is(err.name, "NotAllowedError", "Expected NotAllowedError DOMException");
+ } finally {
+ ok(
+ !wrappedDoc.hasValidTransientUserGestureActivation,
+ "share() must consume the activation"
+ );
+ }
+ });
+</script>