зеркало из https://github.com/mozilla/pjs.git
Bug 401092 - Bookmark Icons (favicons) disappear. r=sspitzer, a=blocking-beta.
This commit is contained in:
Родитель
9fe26d01ba
Коммит
17f433a7c7
|
@ -313,8 +313,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
var iconURI = aNode.icon;
|
var iconURI = aNode.icon;
|
||||||
if (iconURI && menuitem.getAttribute("image") != iconURI.spec)
|
if (iconURI) {
|
||||||
menuitem.setAttribute("image", iconURI.spec);
|
var spec = iconURI.spec;
|
||||||
|
if (menuitem.getAttribute("image") != spec)
|
||||||
|
menuitem.setAttribute("image", spec);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
menuitem.removeAttribute("image");
|
menuitem.removeAttribute("image");
|
||||||
|
|
||||||
|
|
|
@ -534,8 +534,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
var iconURI = aNode.icon;
|
var iconURI = aNode.icon;
|
||||||
if (iconURI && element.getAttribute("image") != iconURI.spec)
|
if (iconURI) {
|
||||||
element.setAttribute("image", iconURI.spec);
|
var spec = iconURI.spec;
|
||||||
|
if (element.getAttribute("image") != spec)
|
||||||
|
element.setAttribute("image", spec);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
element.removeAttribute("image");
|
element.removeAttribute("image");
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче