summaryrefslogtreecommitdiffstats
path: root/browser/components/firefoxview/tests/browser/browser_entrypoint_management.js
blob: ef6b0c99f5c0fea2a23ba397d175680f47e21357 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

add_task(async function test_removing_button_should_close_tab() {
  await withFirefoxView({}, async browser => {
    let win = browser.ownerGlobal;
    let tab = browser.getTabBrowser().getTabForBrowser(browser);
    let button = win.document.getElementById("firefox-view-button");
    await win.gCustomizeMode.removeFromArea(button, "toolbar-context-menu");
    ok(!tab.isConnected, "Tab should have been removed.");
    isnot(win.gBrowser.selectedTab, tab, "A different tab should be selected.");
  });
  CustomizableUI.reset();
});

add_task(async function test_button_auto_readd() {
  await withFirefoxView({}, async browser => {
    let { FirefoxViewHandler } = browser.ownerGlobal;

    CustomizableUI.removeWidgetFromArea("firefox-view-button");
    ok(
      !CustomizableUI.getPlacementOfWidget("firefox-view-button"),
      "Button has no placement"
    );
    ok(!FirefoxViewHandler.tab, "Shouldn't have tab reference");
    ok(!FirefoxViewHandler.button, "Shouldn't have button reference");

    FirefoxViewHandler.openTab();
    ok(FirefoxViewHandler.tab, "Tab re-opened");
    ok(FirefoxViewHandler.button, "Button re-added");
    let placement = CustomizableUI.getPlacementOfWidget("firefox-view-button");
    is(
      placement.area,
      CustomizableUI.AREA_TABSTRIP,
      "Button re-added to the tabs toolbar"
    );
    is(placement.position, 0, "Button re-added as the first toolbar element");
  });
  CustomizableUI.reset();
});

add_task(async function test_button_moved() {
  await withFirefoxView({}, async browser => {
    let { FirefoxViewHandler } = browser.ownerGlobal;
    CustomizableUI.addWidgetToArea(
      "firefox-view-button",
      CustomizableUI.AREA_NAVBAR,
      0
    );
    is(
      FirefoxViewHandler.button.closest("toolbar").id,
      "nav-bar",
      "Button is in the navigation toolbar"
    );
  });
  await withFirefoxView({}, async browser => {
    let { FirefoxViewHandler } = browser.ownerGlobal;
    is(
      FirefoxViewHandler.button.closest("toolbar").id,
      "nav-bar",
      "Button remains in the navigation toolbar"
    );
  });
  CustomizableUI.reset();
});