зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
4c41f58ea3
Коммит
9465ad0316
|
@ -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);
|
||||
]]>
|
||||
|
|
Загрузка…
Ссылка в новой задаче