forked from mirrors/gecko-dev
MozReview-Commit-ID: E9izQpa4fFZ --HG-- extra : rebase_source : 11dc3f1b98f53f5897a3185253b68d2cf7d5083b extra : source : 97f7f5175b2fc3adfb193783f7ecb70b5b9b4562
38 lines
1.6 KiB
JavaScript
38 lines
1.6 KiB
JavaScript
/* 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.createElement("toolbarbutton");
|
|
skippedItem.id = "test-skipintoolbarset-item";
|
|
skippedItem.setAttribute("label", "Test");
|
|
skippedItem.setAttribute("skipintoolbarset", "true");
|
|
skippedItem.setAttribute("removable", "true");
|
|
navbar.customizationTarget.appendChild(skippedItem);
|
|
let libraryButton = document.getElementById("library-button");
|
|
await startCustomizing();
|
|
ok(CustomizableUI.inDefaultState, "Should still be in default state");
|
|
simulateItemDrag(skippedItem, libraryButton);
|
|
ok(CustomizableUI.inDefaultState, "Should still be in default state");
|
|
let skippedItemWrapper = skippedItem.parentNode;
|
|
is(skippedItemWrapper.nextSibling && skippedItemWrapper.nextSibling.id,
|
|
libraryButton.parentNode.id, "Should be next to library button");
|
|
simulateItemDrag(libraryButton, skippedItem);
|
|
let libraryWrapper = libraryButton.parentNode;
|
|
is(libraryWrapper.nextSibling && libraryWrapper.nextSibling.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();
|
|
});
|