diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/fullscreen/api/element-ready-check-not-allowed-cross-origin.sub.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fullscreen/api/element-ready-check-not-allowed-cross-origin.sub.html')
-rw-r--r-- | testing/web-platform/tests/fullscreen/api/element-ready-check-not-allowed-cross-origin.sub.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fullscreen/api/element-ready-check-not-allowed-cross-origin.sub.html b/testing/web-platform/tests/fullscreen/api/element-ready-check-not-allowed-cross-origin.sub.html new file mode 100644 index 0000000000..a59906ba9f --- /dev/null +++ b/testing/web-platform/tests/fullscreen/api/element-ready-check-not-allowed-cross-origin.sub.html @@ -0,0 +1,42 @@ +<!DOCTYPE html> +<title>Element ready check with no allowfullscreen attribute</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="../trusted-click.js"></script> +<body> + <iframe name="cross-origin-default"></iframe> +</body> + +<script> + // Allow the time bomb to be triggered. + setup({ allow_uncaught_exception: true }); + + promise_test(async (t) => { + t.add_cleanup(() => { + if (document.fullscreenElement) return document.exitFullscreen(); + }); + const iframe = document.querySelector("iframe"); + await new Promise((resolve) => { + iframe.onload = resolve; + iframe.src = + "http://{{hosts[][]}}:{{ports[http][0]}}/fullscreen/api/resources/attempt-fullscreen.html"; + }); + // Trigger the child frame to report as soon as its content is loaded. + await trusted_click(); + const timeBomb = new Promise((resolve, reject) => { + t.step_timeout(() => { + const error = new Error("Timed out waiting for message"); + reject(error); + }, 5000); + }); + const data = await Promise.race([promiseMessage(iframe), timeBomb]); + // When a message is received from a child frame, ensure that the report + // matches the expectations. + assert_false( + data.report.result, + `${data.report.frame} frame entered fullscreen, but allowfullscreen was not set` + ); + }, "Cross-origin element ready check with no allowfullscreen or allow attribute"); +</script> |