summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/video-rvfc/request-video-frame-callback-parallel.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/video-rvfc/request-video-frame-callback-parallel.html
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.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/video-rvfc/request-video-frame-callback-parallel.html')
-rw-r--r--testing/web-platform/tests/video-rvfc/request-video-frame-callback-parallel.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/testing/web-platform/tests/video-rvfc/request-video-frame-callback-parallel.html b/testing/web-platform/tests/video-rvfc/request-video-frame-callback-parallel.html
new file mode 100644
index 0000000000..682fd0ac8f
--- /dev/null
+++ b/testing/web-platform/tests/video-rvfc/request-video-frame-callback-parallel.html
@@ -0,0 +1,65 @@
+<!DOCTYPE html>
+<html>
+<title>Test having multiple video.rVFC callbacks in flight for a single element.</title>
+<body></body>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/common/media.js"></script>
+<script>
+
+promise_test(async function(t) {
+ let done;
+ const promise = new Promise(resolve => done = resolve);
+
+ let video = document.createElement('video');
+ document.body.appendChild(video);
+
+ let firstTime;
+ let firstMetadata;
+
+ video.requestVideoFrameCallback(t.step_func((time, metadata) => {
+ firstTime = time;
+ firstMetadata = metadata;
+ }));
+
+ video.requestVideoFrameCallback(t.step_func((time, metadata) => {
+ assert_equals(firstTime, time);
+ assert_object_equals(firstMetadata, metadata);
+ done();
+ }));
+
+ video.src = getVideoURI('/media/movie_5');
+ video.play();
+
+ return promise;
+}, 'Test callbacks get the same information.');
+
+promise_test(async function(t) {
+ let done;
+ const promise = new Promise(resolve => done = resolve);
+
+ let video = document.createElement('video');
+ document.body.appendChild(video);
+
+ let secondCallbackId;
+
+ video.requestVideoFrameCallback(
+ t.step_func(_ => { video.cancelVideoFrameCallback(secondCallbackId); })
+ );
+
+ secondCallbackId = video.requestVideoFrameCallback(
+ t.step_func(_ => {
+ assert_unreached("Cancelled callbacks shouldn't be executed")
+ })
+ );
+
+ // NOTE: This callback should be executed last.
+ video.requestVideoFrameCallback(done);
+
+ video.src = getVideoURI('/media/movie_5');
+ video.play();
+
+ return promise;
+}, 'Test we can cancel callbacks from callbacks.');
+</script>
+</html>