summaryrefslogtreecommitdiffstats
path: root/browser/components/customizableui/test/browser_948985_non_removable_defaultArea.js
blob: ce8d3c2d3aed47061a88efeb89dd296fe2fd4cd7 (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
/* 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/. */

const kWidgetId = "test-destroy-non-removable-defaultArea";

add_task(function () {
  let spec = {
    id: kWidgetId,
    label: "Test non-removable defaultArea re-adding.",
    removable: false,
    defaultArea: CustomizableUI.AREA_NAVBAR,
  };
  CustomizableUI.createWidget(spec);
  let placement = CustomizableUI.getPlacementOfWidget(kWidgetId);
  ok(placement, "Should have placed the widget.");
  is(
    placement && placement.area,
    CustomizableUI.AREA_NAVBAR,
    "Widget should be in navbar"
  );
  CustomizableUI.destroyWidget(kWidgetId);
  CustomizableUI.removeWidgetFromArea(kWidgetId);

  CustomizableUI.createWidget(spec);
  ok(placement, "Should have placed the widget.");
  is(
    placement && placement.area,
    CustomizableUI.AREA_NAVBAR,
    "Widget should be in navbar"
  );
  CustomizableUI.destroyWidget(kWidgetId);
  CustomizableUI.removeWidgetFromArea(kWidgetId);

  const kPrefCustomizationAutoAdd = "browser.uiCustomization.autoAdd";
  Services.prefs.setBoolPref(kPrefCustomizationAutoAdd, false);
  CustomizableUI.createWidget(spec);
  ok(placement, "Should have placed the widget.");
  is(
    placement && placement.area,
    CustomizableUI.AREA_NAVBAR,
    "Widget should be in navbar"
  );
  CustomizableUI.destroyWidget(kWidgetId);
  CustomizableUI.removeWidgetFromArea(kWidgetId);
  Services.prefs.clearUserPref(kPrefCustomizationAutoAdd);
});