1
0
Fork 0
firefox/toolkit/components/pictureinpicture/tests/browser_closePlayer.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

48 lines
1.7 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
/**
* Tests that closing with unpip leaves the video playing but the close button
* will pause the video.
*/
add_task(async () => {
for (let videoID of ["with-controls", "no-controls"]) {
info(`Testing ${videoID} case.`);
let playVideo = () => {
return SpecialPowers.spawn(browser, [videoID], async videoID => {
return content.document.getElementById(videoID).play();
});
};
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, TEST_PAGE);
let browser = tab.linkedBrowser;
await playVideo();
// Try the unpip button.
let pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
ok(!(await isVideoPaused(browser, videoID)), "The video is not paused");
let pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
let unpipButton = pipWin.document.getElementById("unpip");
EventUtils.synthesizeMouseAtCenter(unpipButton, {}, pipWin);
await pipClosed;
ok(!(await isVideoPaused(browser, videoID)), "The video is not paused");
// Try the close button.
pipWin = await triggerPictureInPicture(browser, videoID);
ok(pipWin, "Got Picture-in-Picture window.");
ok(!(await isVideoPaused(browser, videoID)), "The video is not paused");
pipClosed = BrowserTestUtils.domWindowClosed(pipWin);
let closeButton = pipWin.document.getElementById("close");
EventUtils.synthesizeMouseAtCenter(closeButton, {}, pipWin);
await pipClosed;
ok(await isVideoPaused(browser, videoID), "The video is paused");
BrowserTestUtils.removeTab(tab);
}
});