Backed out 3 changesets (bug 1325464) for xpcshell failures a=backout

Backed out changeset 562ddc32cc21 (bug 1325464)
Backed out changeset cd10db6087dd (bug 1325464)
Backed out changeset 4079437c4648 (bug 1325464)
This commit is contained in:
Wes Kocher
2016-12-29 14:05:44 -08:00
parent 9783d5aac7
commit 2d7553dcfd
854 changed files with 8157 additions and 8141 deletions

View File

@@ -9,7 +9,7 @@
* events.
*/
var CustomizationHandler = {
handleEvent(aEvent) {
handleEvent: function(aEvent) {
switch (aEvent.type) {
case "customizationstarting":
this._customizationStarting();
@@ -23,11 +23,11 @@ var CustomizationHandler = {
}
},
isCustomizing() {
isCustomizing: function() {
return document.documentElement.hasAttribute("customizing");
},
_customizationStarting() {
_customizationStarting: function() {
// Disable the toolbar context menu items
let menubar = document.getElementById("main-menubar");
for (let childNode of menubar.childNodes)
@@ -51,11 +51,11 @@ var CustomizationHandler = {
}
},
_customizationChange() {
_customizationChange: function() {
PlacesToolbarHelper.customizeChange();
},
_customizationEnding(aDetails) {
_customizationEnding: function(aDetails) {
// Update global UI elements that may have been added or removed
if (aDetails.changed) {
gURLBar = document.getElementById("urlbar");