diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /testing/web-platform/tests/fenced-frame/notify-event-success.https.html | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fenced-frame/notify-event-success.https.html')
-rw-r--r-- | testing/web-platform/tests/fenced-frame/notify-event-success.https.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fenced-frame/notify-event-success.https.html b/testing/web-platform/tests/fenced-frame/notify-event-success.https.html new file mode 100644 index 0000000000..76ed9abbfa --- /dev/null +++ b/testing/web-platform/tests/fenced-frame/notify-event-success.https.html @@ -0,0 +1,55 @@ +<!DOCTYPE html> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/resources/testdriver.js"></script> +<script src="/resources/testdriver-actions.js"></script> +<script src="/resources/testdriver-vendor.js"></script> +<script src="/common/utils.js"></script> +<script src="/common/dispatcher/dispatcher.js"></script> +<script src="/common/get-host-info.sub.js"></script> +<script src="resources/utils.js"></script> +<title>Test that fenced frame notifyEvent() succeeds on click</title> + +<body> + <script> + promise_test(async (t) => { + const fencedframe = await attachFencedFrameContext( + {generator_api: 'fledge'}); + let notified = false; + fencedframe.element.addEventListener('fencedtreeclick', () => notified = true); + + // Add a click handler to the fenced frame's content, which will + // trigger the fenced handler registered above on the fencedframe + // element. + await fencedframe.execute(() => { + document.addEventListener('click', (e) => { + window.fence.notifyEvent(e); + }); + }); + + await multiClick(10, 10, fencedframe.element); + + assert_true(notified); + }, "Test that fenced frame notifyEvent() succeeds on click"); + + promise_test(async (t) => { + const fencedframe = await attachFencedFrameContext( + {generator_api: 'fledge'}); + let notified = false; + fencedframe.element.onfencedtreeclick = () => notified = true; + + // Add a click handler to the fenced frame's content, which will + // trigger the fenced handler registered above on the fencedframe + // element. + await fencedframe.execute(() => { + document.addEventListener('click', (e) => { + window.fence.notifyEvent(e); + }); + }); + + await multiClick(10, 10, fencedframe.element); + + assert_true(notified); + }, "Test that fenced frame notifyEvent() succeeds on click when using the 'onfencedtreeclick' attribute."); + </script> +</body> |