summaryrefslogtreecommitdiffstats
path: root/browser/components/customizableui/test/browser_885052_customize_mode_observers_disabed.js
blob: 346608dc9970189370b579c3c5e67493efdab046 (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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

function isFullscreenSizeMode() {
  let sizemode = document.documentElement.getAttribute("sizemode");
  return sizemode == "fullscreen";
}

// Observers should be disabled when in customization mode.
add_task(async function () {
  CustomizableUI.addWidgetToArea(
    "fullscreen-button",
    CustomizableUI.AREA_FIXED_OVERFLOW_PANEL
  );

  await waitForOverflowButtonShown();

  // Show the panel so it isn't hidden and has bindings applied etc.:
  await document.getElementById("nav-bar").overflowable.show();

  // Hide it again.
  document.getElementById("widget-overflow").hidePopup();

  let fullscreenButton = document.getElementById("fullscreen-button");
  ok(
    !fullscreenButton.checked,
    "Fullscreen button should not be checked when not in fullscreen."
  );
  ok(
    !isFullscreenSizeMode(),
    "Should not be in fullscreen sizemode before we enter fullscreen."
  );

  BrowserFullScreen();
  await TestUtils.waitForCondition(() => isFullscreenSizeMode());
  ok(
    fullscreenButton.checked,
    "Fullscreen button should be checked when in fullscreen."
  );

  await startCustomizing();

  let fullscreenButtonWrapper = document.getElementById(
    "wrapper-fullscreen-button"
  );
  ok(
    fullscreenButtonWrapper.hasAttribute("itemobserves"),
    "Observer should be moved to wrapper"
  );
  fullscreenButton = document.getElementById("fullscreen-button");
  ok(
    !fullscreenButton.hasAttribute("observes"),
    "Observer should be removed from button"
  );
  ok(
    !fullscreenButton.checked,
    "Fullscreen button should no longer be checked during customization mode"
  );

  await endCustomizing();

  BrowserFullScreen();
  fullscreenButton = document.getElementById("fullscreen-button");
  await TestUtils.waitForCondition(() => !isFullscreenSizeMode());
  ok(
    !fullscreenButton.checked,
    "Fullscreen button should not be checked when not in fullscreen."
  );
  CustomizableUI.reset();
});