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/scheduler/post-task-with-signal-from-detached-iframe.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 '')
-rw-r--r-- | testing/web-platform/tests/scheduler/post-task-with-signal-from-detached-iframe.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/scheduler/post-task-with-signal-from-detached-iframe.html b/testing/web-platform/tests/scheduler/post-task-with-signal-from-detached-iframe.html new file mode 100644 index 0000000000..acd974cbc7 --- /dev/null +++ b/testing/web-platform/tests/scheduler/post-task-with-signal-from-detached-iframe.html @@ -0,0 +1,32 @@ +<!doctype html> +<title>Scheduler: postTask with Detached Frame's Signal</title> +<link rel="author" title="Nate Chapin" href="mailto:japhet@chromium.org"> +<link rel="help" href="https://github.com/WICG/scheduling-apis"> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> + +<script> +'use strict'; + +promise_test(async t => { + await new Promise((resolve) => { + window.addEventListener('load', resolve); + }); + + const frame = document.createElement('iframe'); + frame.srcdoc = ` + <script> + const controller = new TaskController(); + window.childFrameSignal = controller.signal; + <\/script>` + await new Promise((resolve) => { + frame.addEventListener('load', resolve) + document.body.appendChild(frame); + }); + + const signal = frame.contentWindow.childFrameSignal; + document.body.removeChild(frame); + return scheduler.postTask(() => {}, {signal}); +}, 'Test scheduler.postTask() with a signal from a detached iframe'); + +</script> |