author | Neil Deakin <neil@mozilla.com> |
Sun, 05 Dec 2010 17:10:45 -0500 | |
changeset 58650 | fdaa466ab54f73377fc8df21697f065583aa85b6 |
parent 58649 | 62d5d8bc0ac8b6307f1e2ede7b78763444df46fe |
child 58651 | 44641ad32c29947ee1001ed6a84efa4a533392d2 |
push id | 17394 |
push user | neil@mozilla.com |
push date | Sun, 05 Dec 2010 22:12:05 +0000 |
treeherder | mozilla-central@44641ad32c29 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | dao, blocking |
bugs | 606343 |
milestone | 2.0b8pre |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
browser/base/content/browser-places.js | file | annotate | diff | comparison | revisions | |
browser/base/content/browser.js | file | annotate | diff | comparison | revisions |
--- a/browser/base/content/browser-places.js +++ b/browser/base/content/browser-places.js @@ -342,17 +342,18 @@ var PlacesCommandHook = { // dock the panel to the star icon when possible, otherwise dock // it to the content area if (aBrowser.contentWindow == window.content) { var starIcon = aBrowser.ownerDocument.getElementById("star-button"); if (starIcon && isElementVisible(starIcon)) { // Make sure the bookmark properties dialog hangs toward the middle of // the location bar in RTL builds - var position = (getComputedStyle(gNavToolbox, "").direction == "rtl") ? 'after_start' : 'after_end'; + var position = (getComputedStyle(gNavToolbox, "").direction == "rtl") ? + 'bottomcenter topleft' : 'bottomcenter topright'; if (aShowEditUI) StarUI.showEditBookmarkPopup(itemId, starIcon, position); return; } } StarUI.showEditBookmarkPopup(itemId, aBrowser, "overlap"); },
--- a/browser/base/content/browser.js +++ b/browser/base/content/browser.js @@ -7262,17 +7262,17 @@ var gIdentityHandler = { this._identityPopup.popupBoxObject .setConsumeRollupEvent(Ci.nsIPopupBoxObject.ROLLUP_CONSUME); // Update the popup strings this.setPopupMessages(this._identityBox.className); // Make sure the identity popup hangs toward the middle of the location bar // in RTL builds - var position = (getComputedStyle(gNavToolbox, "").direction == "rtl") ? 'after_end' : 'after_start'; + var position = (getComputedStyle(gNavToolbox, "").direction == "rtl") ? 'bottomcenter topright' : 'bottomcenter topleft'; // Add the "open" attribute to the identity box for styling this._identityBox.setAttribute("open", "true"); var self = this; this._identityPopup.addEventListener("popuphidden", function (e) { e.currentTarget.removeEventListener("popuphidden", arguments.callee, false); self._identityBox.removeAttribute("open"); }, false);