Firefox 3用の処理を修正

git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@1796 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
piro 2008-02-22 03:13:22 +00:00
parent d5b16b6e71
commit c7f4c24735
3 changed files with 3 additions and 16 deletions

View File

@ -1,10 +1,10 @@
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
tabbrowser[tabFx2Compatible="true"] .tabbrowser-tab {
:root[tabFx2Compatible="true"] .tabbrowser-tab {
-moz-binding: url(tabFx2Compatible.xml#tabbrowser-tab) !important;
}
tabbrowser[tabFx2Compatible="true"] .tabbrowser-tab[busy] > hbox > stack > .tab-icon-image {
:root[tabFx2Compatible="true"] .tabbrowser-tab[busy] > hbox > stack > .tab-icon-image {
list-style-image: url("chrome://global/skin/throbber/Throbber-small.gif") !important;
opacity: 0.6;
}

View File

@ -12,7 +12,7 @@ window.addEventListener('DOMContentLoaded', function() {
switch (window.getComputedStyle(b.selectedTab, '').getPropertyValue('-moz-binding'))
{
case 'url(chrome://browser/content/tabbrowser.xml#tabbrowser-tab)':
b.setAttribute('tabFx2Compatible', true);
document.documentElement.setAttribute('tabFx2Compatible', true);
break;
}
}, true);

View File

@ -418,13 +418,6 @@ TreeStyleTabBrowser.prototype = {
initTabContents : function(aTab)
{
var icon = document.getAnonymousElementByAttribute(aTab, 'class', 'tab-icon');
if (!icon) { // retry after a while
window.setTimeout(function(aSelf, aTab) {
aSelf.initTabContents(aTab);
}, 100, this, aTab);
return;
}
var label = this.getTabLabel(aTab);
var close = this.getTabClosebox(aTab);
var counter = document.getAnonymousElementByAttribute(aTab, 'class', this.kCOUNTER_CONTAINER);
@ -470,12 +463,6 @@ TreeStyleTabBrowser.prototype = {
var label = this.getTabLabel(aTab);
var close = this.getTabClosebox(aTab);
var counter = document.getAnonymousElementByAttribute(aTab, 'class', this.kCOUNTER_CONTAINER);
if (!counter) { // retry after a while
window.setTimeout(function(aSelf, aTab) {
aSelf.initTabContentsOrder(aTab);
}, 100, this, aTab);
return;
}
var nodes = document.getAnonymousNodes(aTab);
for (var i = nodes.length-1; i > -1; i--)