Bug 125998 - For image documents, use the iamge-url as the tab-icon. patch by Christian Schmidt <bugzilla.mozilla.org@chsc.dk> r=vlad

This commit is contained in:
mozilla.mano%sent.com 2007-08-22 04:59:59 +00:00
Родитель 4c41f58ea3
Коммит 9465ad0316
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -430,7 +430,11 @@
<parameter name="aElt"/>
<body>
<![CDATA[
var iconURL = this.buildFavIconString(aURI);
var iconURL;
if (this.contentDocument instanceof ImageDocument)
iconURL = this.currentURI.spec;
else
iconURL = this.buildFavIconString(aURI);
if (!this.isFavIconKnownMissing(iconURL))
aElt.setAttribute(aAttr, iconURL);
]]>