Bug 989609 - Dynamically added toolbars with API-created widgets should not break customize mode. r=Unfocused,mdeboer

This commit is contained in:
Mike Conley 2014-04-02 16:39:00 -04:00
parent 3dcc518de7
commit 734fd92165
3 changed files with 94 additions and 11 deletions

View File

@ -1594,6 +1594,12 @@ let CustomizableUIInternal = {
aPosition = placements.length;
}
let widget = gPalette.get(aWidgetId);
if (widget) {
widget.currentPosition = aPosition;
widget.currentArea = oldPlacement.area;
}
if (aPosition == oldPlacement.position) {
return;
}
@ -1606,11 +1612,6 @@ let CustomizableUIInternal = {
}
placements.splice(aPosition, 0, aWidgetId);
let widget = gPalette.get(aWidgetId);
if (widget) {
widget.currentPosition = aPosition;
}
gDirty = true;
gDirtyAreaCache.add(oldPlacement.area);
@ -1656,19 +1657,25 @@ let CustomizableUIInternal = {
},
restoreStateForArea: function(aArea, aLegacyState) {
if (gPlacements.has(aArea)) {
// Already restored.
return;
}
let placementsPreexisted = gPlacements.has(aArea);
this.beginBatchUpdate();
try {
gRestoring = true;
let restored = false;
gPlacements.set(aArea, []);
if (placementsPreexisted) {
LOG("Restoring " + aArea + " from pre-existing placements");
for (let [position, id] in Iterator(gPlacements.get(aArea))) {
this.moveWidgetWithinArea(id, position);
}
gDirty = false;
restored = true;
} else {
gPlacements.set(aArea, []);
}
if (gSavedState && aArea in gSavedState.placements) {
if (!restored && gSavedState && aArea in gSavedState.placements) {
LOG("Restoring " + aArea + " from saved state");
let placements = gSavedState.placements[aArea];
for (let id of placements)

View File

@ -99,6 +99,7 @@ skip-if = os == "linux"
[browser_985815_propagate_setToolbarVisibility.js]
[browser_981305_separator_insertion.js]
[browser_989609_bootstrapped_custom_toolbar.js]
[browser_987177_destroyWidget_xul.js]
[browser_987177_xul_wrapper_updating.js]
[browser_987492_window_api.js]

View File

@ -0,0 +1,75 @@
/* 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 kTestBarID = "testBar";
const kWidgetID = "characterencoding-button";
function createTestBar() {
let testBar = document.createElement("toolbar");
testBar.id = kTestBarID;
testBar.setAttribute("customizable", "true");
CustomizableUI.registerArea(kTestBarID,
{ type: CustomizableUI.TYPE_TOOLBAR, legacy: false }
);
gNavToolbox.appendChild(testBar);
return testBar;
}
/**
* Helper function that does the following:
*
* 1) Creates a custom toolbar and registers it
* with CustomizableUI.
* 2) Adds the widget with ID aWidgetID to that new
* toolbar.
* 3) Enters customize mode and makes sure that the
* widget is still in the right toolbar.
* 4) Exits customize mode, then removes and deregisters
* the custom toolbar.
* 5) Checks that the widget has no placement.
* 6) Re-adds and re-registers a custom toolbar with the same
* ID as the first one.
* 7) Enters customize mode and checks that the widget is
* properly back in the toolbar.
* 8) Exits customize mode, removes and de-registers the
* toolbar, and resets the toolbars to default.
*/
function checkRestoredPresence(aWidgetID) {
return Task.spawn(function* () {
let testBar = createTestBar();
CustomizableUI.addWidgetToArea(aWidgetID, kTestBarID);
let placement = CustomizableUI.getPlacementOfWidget(aWidgetID);
is(placement.area, kTestBarID,
"Expected " + aWidgetID + " to be in the test toolbar");
CustomizableUI.unregisterArea(testBar.id);
testBar.remove();
let placement = CustomizableUI.getPlacementOfWidget(aWidgetID);
is(placement, null, "Expected " + aWidgetID + " to be in the palette");
testBar = createTestBar();
yield startCustomizing();
let placement = CustomizableUI.getPlacementOfWidget(aWidgetID);
is(placement.area, kTestBarID,
"Expected " + aWidgetID + " to be in the test toolbar");
yield endCustomizing();
CustomizableUI.unregisterArea(testBar.id);
testBar.remove();
yield resetCustomization();
});
}
add_task(function* () {
yield checkRestoredPresence("downloads-button")
});
add_task(function* () {
yield checkRestoredPresence("characterencoding-button")
});