Bug 289553 Make dynamically changing the favicon update the icon in the tab

r=mconnor a=asa
This commit is contained in:
cst%andrew.cmu.edu 2007-08-22 05:00:06 +00:00
Родитель 0916f1e25e
Коммит 1dd6b9210e
1 изменённых файлов: 8 добавлений и 1 удалений

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

@ -394,6 +394,13 @@
}
},
setIcon : function(aURI)
{
this.mIcon = aURI;
if (!this.mTab.hasAttribute("busy"))
this.mTab.setAttribute("image", aURI);
},
QueryInterface : function(aIID)
{
if (aIID.equals(Components.interfaces.nsIWebProgressListener) ||
@ -785,7 +792,7 @@
}
if (listener)
listener.mIcon = href;
listener.setIcon(href);
if (tabBrowser.mProgressListeners) {
var targetBrowser = tabBrowser.getBrowserAtIndex(browserIndex);