summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html')
-rw-r--r--testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html b/testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html
new file mode 100644
index 0000000000..6cf93f4730
--- /dev/null
+++ b/testing/web-platform/tests/autoplay-policy-detection/autoplaypolicy_media_element.html
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<title>Autoplay policy basic behavior test for media element</title>
+<script src="/common/media.js"></script>
+<script src=/resources/testharness.js></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+
+promise_test(async function playAudibleMediaElement() {
+ const video = document.createElement('video');
+ video.src = getVideoURI('/media/movie_5');
+ await new Promise(r => video.onloadedmetadata = r);
+ const startPlaying = await video.play().then(_ => true, _ => false);
+ if (startPlaying) {
+ assert_equals(
+ window.navigator.getAutoplayPolicy(video),
+ "allowed",
+ 'Correct value when audible video is allowed to play');
+ } else {
+ assert_in_array(
+ window.navigator.getAutoplayPolicy(video),
+ ["disallowed", "allowed-muted"],
+ 'Correct value when audible video is not allowed to play'
+ );
+ }
+}, "Check autoplay policy when playing audible media element");
+
+promise_test(async function playInaudibleMediaElement() {
+ const video = document.createElement('video');
+ video.src = getVideoURI('/media/movie_5');
+ video.muted = true;
+ await new Promise(r => video.onloadedmetadata = r);
+ const startPlaying = await video.play().then(_ => true, _ => false);
+ if (startPlaying) {
+ assert_in_array(
+ window.navigator.getAutoplayPolicy(video),
+ ["allowed", "allowed-muted"],
+ 'Correct value when inaudible video is allowed to play');
+ } else {
+ assert_equals(
+ window.navigator.getAutoplayPolicy(video),
+ "disallowed",
+ 'Correct value when inaudible video is not allowed to play'
+ );
+ }
+}, "Check autoplay policy when playing inaudible media element");
+
+</script>