summaryrefslogtreecommitdiffstats
path: root/dom/media/autoplay/test
diff options
context:
space:
mode:
Diffstat (limited to 'dom/media/autoplay/test')
-rw-r--r--dom/media/autoplay/test/browser/browser_autoplay_videoDocument.js4
-rw-r--r--dom/media/autoplay/test/browser/head.js8
-rw-r--r--dom/media/autoplay/test/mochitest/file_autoplay_policy_eventdown_activation.html4
-rw-r--r--dom/media/autoplay/test/mochitest/file_autoplay_policy_key_blacklist.html2
-rw-r--r--dom/media/autoplay/test/mochitest/file_autoplay_policy_play_before_loadedmetadata.html2
-rw-r--r--dom/media/autoplay/test/mochitest/file_autoplay_policy_unmute_pauses.html4
6 files changed, 12 insertions, 12 deletions
diff --git a/dom/media/autoplay/test/browser/browser_autoplay_videoDocument.js b/dom/media/autoplay/test/browser/browser_autoplay_videoDocument.js
index 77ce4ddbc1..433e4fd51e 100644
--- a/dom/media/autoplay/test/browser/browser_autoplay_videoDocument.js
+++ b/dom/media/autoplay/test/browser/browser_autoplay_videoDocument.js
@@ -31,8 +31,8 @@ async function checkIsIframeVideoDocumentAutoplay(browser) {
const iframe = content.document.createElement("iframe");
iframe.src = pageURL;
content.document.body.appendChild(iframe);
- const iframeLoaded = new Promise((resolve, reject) => {
- iframe.addEventListener("load", e => resolve(), { once: true });
+ const iframeLoaded = new Promise(resolve => {
+ iframe.addEventListener("load", () => resolve(), { once: true });
});
await iframeLoaded;
return iframe.browsingContext;
diff --git a/dom/media/autoplay/test/browser/head.js b/dom/media/autoplay/test/browser/head.js
index c84850900a..6522104b7f 100644
--- a/dom/media/autoplay/test/browser/head.js
+++ b/dom/media/autoplay/test/browser/head.js
@@ -29,10 +29,10 @@ function loadAutoplayVideo(browser, args) {
info("- create a new autoplay video -");
let video = content.document.createElement("video");
video.id = "v1";
- video.didPlayPromise = new Promise((resolve, reject) => {
+ video.didPlayPromise = new Promise(resolve => {
video.addEventListener(
"playing",
- e => {
+ () => {
video.didPlay = true;
resolve();
},
@@ -40,7 +40,7 @@ function loadAutoplayVideo(browser, args) {
);
video.addEventListener(
"blocked",
- e => {
+ () => {
video.didPlay = false;
resolve();
},
@@ -54,7 +54,7 @@ function loadAutoplayVideo(browser, args) {
info("will call play() when reached loadedmetadata");
video.addEventListener(
"loadedmetadata",
- e => {
+ () => {
video.play().then(
() => {
info("video play() resolved");
diff --git a/dom/media/autoplay/test/mochitest/file_autoplay_policy_eventdown_activation.html b/dom/media/autoplay/test/mochitest/file_autoplay_policy_eventdown_activation.html
index e25b6401d1..9fcda2afe9 100644
--- a/dom/media/autoplay/test/mochitest/file_autoplay_policy_eventdown_activation.html
+++ b/dom/media/autoplay/test/mochitest/file_autoplay_policy_eventdown_activation.html
@@ -36,8 +36,8 @@
let x = eventNames.map(
(eventName) => {
- return new Promise(function (resolve, reject) {
- window.addEventListener(eventName, async function (event) {
+ return new Promise(function (resolve) {
+ window.addEventListener(eventName, async function () {
let p = await element.play().then(() => true, () => false);
ok(p, "Expect to be activated already in " + eventName);
resolve();
diff --git a/dom/media/autoplay/test/mochitest/file_autoplay_policy_key_blacklist.html b/dom/media/autoplay/test/mochitest/file_autoplay_policy_key_blacklist.html
index b901df3324..fc8c47065e 100644
--- a/dom/media/autoplay/test/mochitest/file_autoplay_policy_key_blacklist.html
+++ b/dom/media/autoplay/test/mochitest/file_autoplay_policy_key_blacklist.html
@@ -91,7 +91,7 @@
input.blur();
}
- async function testAutoplayKeyBlacklist(testCase, parent_window) {
+ async function testAutoplayKeyBlacklist() {
let element = document.createElement("video");
element.preload = "auto";
element.src = "short.mp4";
diff --git a/dom/media/autoplay/test/mochitest/file_autoplay_policy_play_before_loadedmetadata.html b/dom/media/autoplay/test/mochitest/file_autoplay_policy_play_before_loadedmetadata.html
index 3594d0f236..dd358e6dc1 100644
--- a/dom/media/autoplay/test/mochitest/file_autoplay_policy_play_before_loadedmetadata.html
+++ b/dom/media/autoplay/test/mochitest/file_autoplay_policy_play_before_loadedmetadata.html
@@ -22,7 +22,7 @@
window.is = window.opener.is;
window.info = window.opener.info;
- async function testPlayBeforeLoadedMetata(testCase, parent_window) {
+ async function testPlayBeforeLoadedMetata(testCase) {
info("testPlayBeforeLoadedMetata: " + testCase.resource);
let element = document.createElement("video");
diff --git a/dom/media/autoplay/test/mochitest/file_autoplay_policy_unmute_pauses.html b/dom/media/autoplay/test/mochitest/file_autoplay_policy_unmute_pauses.html
index 125ee156b6..f3b4e7da4d 100644
--- a/dom/media/autoplay/test/mochitest/file_autoplay_policy_unmute_pauses.html
+++ b/dom/media/autoplay/test/mochitest/file_autoplay_policy_unmute_pauses.html
@@ -22,8 +22,8 @@
window.is = window.opener.is;
window.info = window.opener.info;
- function testAutoplayUnmutePauses(testCase, parent_window) {
- return new Promise(function (resolve, reject) {
+ function testAutoplayUnmutePauses(testCase) {
+ return new Promise(function (resolve) {
info("testAutoplayUnmutePauses: " + testCase.property);