diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/web-share/test-fully-active.https.html | |
parent | Initial commit. (diff) | |
download | thunderbird-upstream.tar.xz thunderbird-upstream.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/web-share/test-fully-active.https.html')
-rw-r--r-- | testing/web-platform/tests/web-share/test-fully-active.https.html | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/testing/web-platform/tests/web-share/test-fully-active.https.html b/testing/web-platform/tests/web-share/test-fully-active.https.html new file mode 100644 index 0000000000..46991d3370 --- /dev/null +++ b/testing/web-platform/tests/web-share/test-fully-active.https.html @@ -0,0 +1,77 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8" /> + <title>WebShare Test: consume user activation</title> + <link rel="help" href="https://github.com/w3c/web-share/pull/219" /> + <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> + </head> + <body> + <script> + async function loadIframe() { + const iframe = document.createElement("iframe"); + iframe.src = "./resources/blank.html"; + document.body.appendChild(iframe); + await new Promise((resolve) => { + iframe.addEventListener("load", resolve); + }); + return iframe; + } + + promise_test(async (t) => { + const iframe = await loadIframe(); + const { contentWindow } = iframe; + const { navigator, DOMException } = contentWindow; + const data = { text: "text" }; + iframe.remove(); + await promise_rejects_dom( + t, + "InvalidStateError", + DOMException, + navigator.share(data), + "Expected promise rejected with InvalidStateError from .share()" + ); + }, "calling share() on non-fully active document returns a promise rejected with InvalidStateError"); + + promise_test(async (t) => { + const iframe = await loadIframe(); + const { contentWindow } = iframe; + const { navigator, DOMException } = contentWindow; + const data = { text: "text" }; + + // Acquire transient activation, but make the iframe non-fully-active + await test_driver.bless( + "web share", + () => { + iframe.remove(); + }, + contentWindow + ); + + await promise_rejects_dom( + t, + "InvalidStateError", + DOMException, + navigator.share(data), + "Expected promise rejected with InvalidStateError from .share()" + ); + }, "calling share() with transient activation on non-fully active document returns a promise rejected with InvalidStateError"); + + promise_test(async (t) => { + const iframe = await loadIframe(); + const { contentWindow } = iframe; + const { navigator } = contentWindow; + const data = { text: "text" }; + + assert_true(navigator.canShare(data), "doc is fully active, so true"); + + iframe.remove(); + + assert_false(navigator.canShare(data), "not fully active, so false"); + }, "calling canShare() on a non-fully active document returns false"); + </script> + </body> +</html> |