summaryrefslogtreecommitdiffstats
path: root/browser/components/customizableui/test/browser_892955_isWidgetRemovable_for_removed_widgets.js
blob: 7584c52bb60d87b016769e9d5172ed6b81f41abf (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
/* 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";

const kWidgetId = "test-892955-remove-widget";

// Removing a destroyed widget should work.
add_task(async function () {
  let widgetSpec = {
    id: kWidgetId,
    defaultArea: CustomizableUI.AREA_NAVBAR,
  };

  CustomizableUI.createWidget(widgetSpec);
  CustomizableUI.destroyWidget(kWidgetId);
  let noError = true;
  try {
    CustomizableUI.removeWidgetFromArea(kWidgetId);
  } catch (ex) {
    noError = false;
    console.error(ex);
  }
  ok(noError, "Shouldn't throw an error removing a destroyed widget.");
});

add_task(async function asyncCleanup() {
  await resetCustomization();
});