Bug 485841 - Get rid of some timeouts and avoid boxObject where appropriate in tabbrowser, part 3. r=enn

This commit is contained in:
Dão Gottwald 2009-07-10 13:21:16 +02:00
Родитель 96bbdd17aa
Коммит 2d6640a167
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -2992,10 +2992,7 @@
this.setAttribute("closebuttons", "activetab");
break;
case 1:
var width = this.firstChild.boxObject.width;
// 0 width is an invalid value and indicates
// an item without display, so ignore.
if (width > this.mTabClipWidth || width == 0)
if (this.firstChild.clientWidth > this.mTabClipWidth)
this.setAttribute("closebuttons", "alltabs");
else
this.setAttribute("closebuttons", "activetab");