summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/fullscreen/browser_domFS_statuspanel.js
blob: b6f6f9bc5ec9d69d8c5ae4ed11c9b1c21bc597c4 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

/* Tests that the status panel gets cleared when entering DOM fullscreen
 * (bug 1850993), and that we don't show network statuses in DOM fullscreen
 * (bug 1853896). */

// DOM FS tests tends to trigger a race in the fullscreen time telemetry,
// where the fullscreen enter and fullscreen exit events (which use the
// same histogram ID) overlap. That causes TelemetryStopwatch to log an
// error.
SimpleTest.ignoreAllUncaughtExceptions(true);

let statuspanel = document.getElementById("statuspanel");
let statuspanelLabel = document.getElementById("statuspanel-label");

async function withDomFsTab(beforeEnter, afterEnter) {
  let url = "https://example.com/";
  let tab = await BrowserTestUtils.openNewForegroundTab(
    gBrowser,
    url,
    true,
    true
  );
  let browser = tab.linkedBrowser;

  await beforeEnter();
  info("Entering DOM fullscreen");
  await changeFullscreen(browser, true);
  is(document.fullscreenElement, browser, "Entered DOM fullscreen");
  await afterEnter();

  await BrowserTestUtils.removeTab(tab);
}

add_task(async function test_overlink() {
  const overlink = "https://example.com";
  let setAndCheckOverLink = async info => {
    XULBrowserWindow.setOverLink(overlink);
    await TestUtils.waitForCondition(
      () => BrowserTestUtils.isVisible(statuspanel),
      `statuspanel should become visible after setting overlink ${info}`
    );
    is(
      statuspanelLabel.value,
      BrowserUIUtils.trimURL(overlink),
      `statuspanel has expected value after setting overlink ${info}`
    );
  };
  await withDomFsTab(
    async function () {
      await setAndCheckOverLink("outside of DOM FS");
    },
    async function () {
      await TestUtils.waitForCondition(
        () => !BrowserTestUtils.isVisible(statuspanel),
        "statuspanel with overlink should hide when entering DOM FS"
      );
      await setAndCheckOverLink("while in DOM FS");
    }
  );
});

add_task(async function test_networkstatus() {
  await withDomFsTab(
    async function () {
      XULBrowserWindow.status = "test1";
      XULBrowserWindow.busyUI = true;
      StatusPanel.update();
      ok(
        BrowserTestUtils.isVisible(statuspanel),
        "statuspanel is visible before entering DOM FS"
      );
      is(statuspanelLabel.value, "test1", "statuspanel has expected value");
    },
    async function () {
      is(
        XULBrowserWindow.busyUI,
        true,
        "browser window still considered busy (i.e. loading stuff) when entering DOM FS"
      );
      is(
        XULBrowserWindow.status,
        "",
        "network status cleared when entering DOM FS"
      );
      ok(
        !BrowserTestUtils.isVisible(statuspanel),
        "statuspanel with network status should should hide when entering DOM FS"
      );
    }
  );
});