From b80e90091fba7b65c413a0c1683fd6e322105296 Mon Sep 17 00:00:00 2001 From: Piro / SHIMODA Hiroshi Date: Sat, 28 May 2011 07:49:02 +0900 Subject: [PATCH] autohide feature didn't work (regression) --- modules/browser.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/browser.js b/modules/browser.js index 647c7453..8ad3bcf4 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -5214,6 +5214,15 @@ TreeStyleTabBrowser.prototype = { return this._panelDNDObserver; }, +/* proxying for window service */ + _callWindowServiceMethod : function TSTBrowser_callWindowServiceMethod(aName, aArgs) + { + return this.windowService[aName].apply(this.windowService, aArgs); + }, + isPopupShown : function TSTBrowser_isPopupShown() { return this._callWindowServiceMethod('isPopupShown', arguments); }, + updateTabsOnTop : function TSTBrowser_updateTabsOnTop() { return this._callWindowServiceMethod('updateTabsOnTop', arguments); }, + registerTabFocusAllowance : function TSTBrowser_registerTabFocusAllowance() { return this._callWindowServiceMethod('registerTabFocusAllowance', arguments); }, + /* show/hide tab bar */ get autoHide() {