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

"use strict";

function getPlacementArea(id) {
  let placement = CustomizableUI.getPlacementOfWidget(id);
  return placement && placement.area;
}

// Check that a destroyed widget recreated after a reset call goes to
// the navigation bar.
add_task(function () {
  const kWidgetId = "test-recreate-after-reset";
  let spec = {
    id: kWidgetId,
    label: "Test re-create after reset.",
    removable: true,
    defaultArea: CustomizableUI.AREA_NAVBAR,
  };

  CustomizableUI.createWidget(spec);
  is(
    getPlacementArea(kWidgetId),
    CustomizableUI.AREA_NAVBAR,
    "widget is in the navigation bar"
  );

  CustomizableUI.destroyWidget(kWidgetId);
  isnot(
    getPlacementArea(kWidgetId),
    CustomizableUI.AREA_NAVBAR,
    "widget removed from the navigation bar"
  );

  CustomizableUI.reset();

  CustomizableUI.createWidget(spec);
  is(
    getPlacementArea(kWidgetId),
    CustomizableUI.AREA_NAVBAR,
    "widget recreated and added back to the nav bar"
  );

  CustomizableUI.destroyWidget(kWidgetId);
});