Bug 389478 - "Add favicons on back/forward menus" [p=ventnor.bugzilla@yahoo.com.au (Michael Ventnor) ui-r=beltzner r=gavin a1.9=schrep]

This commit is contained in:
reed%reedloden.com 2008-02-07 09:30:08 +00:00
Родитель 9fdc154478
Коммит 28aa5d33a0
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -2948,6 +2948,16 @@ function FillHistoryMenu(aParent) {
item.setAttribute("label", entry.title || entry.URI.spec);
item.setAttribute("index", j);
if (j != index) {
try {
let iconURL = Cc["@mozilla.org/browser/favicon-service;1"]
.getService(Ci.nsIFaviconService)
.getFaviconForPage(entry.URI).spec;
item.setAttribute("image", iconURL);
} catch (ex) {}
}
if (j < index) {
item.className = "unified-nav-back";
item.setAttribute("tooltiptext", tooltipBack);