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

var navbar;
var skippedItem;

// Attempting to drag a skipintoolbarset item should work.
add_task(async function() {
  navbar = document.getElementById("nav-bar");
  skippedItem = document.createXULElement("toolbarbutton");
  skippedItem.id = "test-skipintoolbarset-item";
  skippedItem.setAttribute("label", "Test");
  skippedItem.setAttribute("skipintoolbarset", "true");
  skippedItem.setAttribute("removable", "true");
  CustomizableUI.getCustomizationTarget(navbar).appendChild(skippedItem);
  let libraryButton = document.getElementById("library-button");
  await startCustomizing();
  await waitForElementShown(skippedItem);
  ok(CustomizableUI.inDefaultState, "Should still be in default state");
  simulateItemDrag(skippedItem, libraryButton, "start", 0);
  ok(CustomizableUI.inDefaultState, "Should still be in default state");
  let skippedItemWrapper = skippedItem.parentNode;
  is(
    skippedItemWrapper.nextElementSibling &&
      skippedItemWrapper.nextElementSibling.id,
    libraryButton.parentNode.id,
    "Should be next to library button"
  );
  simulateItemDrag(libraryButton, skippedItem, "start", 0);
  let libraryWrapper = libraryButton.parentNode;
  is(
    libraryWrapper.nextElementSibling && libraryWrapper.nextElementSibling.id,
    skippedItem.parentNode.id,
    "Should be next to skipintoolbarset item"
  );
  ok(CustomizableUI.inDefaultState, "Should still be in default state");
});

add_task(async function asyncCleanup() {
  await endCustomizing();
  skippedItem.remove();
  await resetCustomization();
});