summaryrefslogtreecommitdiffstats
path: root/toolkit/components/pictureinpicture/tests/browser_keyboardClosePIPwithESC.js
blob: e8860c80f7c701296fbc503b20e5af25494be71a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/**
 * tests that the ESC key would stop the player and close the PiP player floating window
 */
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();

    let pipWin = await triggerPictureInPicture(browser, videoID);
    ok(pipWin, "The Picture-in-Picture window is not there.");
    ok(
      !(await isVideoPaused(browser, videoID)),
      "The video is paused, but should not."
    );
    ok(
      !pipWin.document.fullscreenElement,
      "PiP should not yet be in fullscreen."
    );

    let controls = pipWin.document.getElementById("controls");
    await promiseFullscreenEntered(pipWin, async () => {
      EventUtils.sendMouseEvent({ type: "dblclick" }, controls, pipWin);
    });

    ok(
      pipWin.document.fullscreenElement == pipWin.document.body,
      "Double-click should have caused to enter fullscreen."
    );

    await promiseFullscreenExited(pipWin, async () => {
      EventUtils.synthesizeKey("KEY_Escape", {}, pipWin);
    });

    ok(
      !pipWin.document.fullscreenElement,
      "ESC should have caused to leave fullscreen."
    );
    ok(
      !(await isVideoPaused(browser, videoID)),
      "The video is paused, but should not."
    );

    // Try to close the PiP window via the ESC button, since now it is not in fullscreen anymore.
    EventUtils.synthesizeKey("KEY_Escape", {}, pipWin);

    // then the PiP should have been closed
    ok(pipWin.closed, "Picture-in-Picture window is not closed, but should.");
    // and the video should not be playing anymore
    ok(
      await isVideoPaused(browser, videoID),
      "The video is not paused, but should."
    );

    await BrowserTestUtils.removeTab(tab);
  }
});