Firefox 3でタブバーの幅が強制的に300ピクセル以上になる問題を修正

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@2051 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2008-03-10 05:21:14 +00:00
parent 1c31c12d34
commit d980f95fec

View File

@ -2732,7 +2732,7 @@ TreeStyleTabBrowser.prototype = {
this.redrawContentArea();
window.setTimeout(function(aSelf) {
if (!aSelf.isGecko18 && aSelf.tabbarShown) {
b.setAttribute(this.kAUTOHIDE, 'show');
b.setAttribute(aSelf.kAUTOHIDE, 'show');
aSelf.redrawContentArea();
}
aSelf.checkTabsIndentOverflow();
@ -2813,6 +2813,7 @@ TreeStyleTabBrowser.prototype = {
this.tabbarCanvas.style.margin = (yOffset || 0)+'px 0 0 '+(xOffset || 0)+'px';
this.tabbarCanvas.style.width = (this.tabbarCanvas.width = w)+'px';
this.tabbarCanvas.style.height = (this.tabbarCanvas.height = h)+'px';
this.tabbarCanvas.style.visibilit = 'visible';
var ctx = this.tabbarCanvas.getContext('2d');
ctx.clearRect(0, 0, w, h);
ctx.save();
@ -2829,6 +2830,7 @@ TreeStyleTabBrowser.prototype = {
this.tabbarCanvas.style.height =
this.tabbarCanvas.width =
this.tabbarCanvas.height = 0;
this.tabbarCanvas.style.visibilit = 'collapse';
},
updateTabbarTransparency : function()