autohide feature didn't work (regression)

This commit is contained in:
Piro / SHIMODA Hiroshi 2011-05-28 07:49:02 +09:00
parent 263e449f9c
commit b80e90091f

View File

@ -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()
{