Bug 456761 - URL Bar has no "level" attribute indicating secure URLs. r=gavin, a=beltzner

This commit is contained in:
Dão Gottwald 2008-11-18 09:10:54 +01:00
Родитель f5b9109022
Коммит 3a6ccf8a2b
1 изменённых файлов: 6 добавлений и 0 удалений

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

@ -4159,9 +4159,15 @@ var XULBrowserWindow = {
if (level) {
this.securityButton.setAttribute("level", level);
this.securityButton.hidden = false;
// We don't style the Location Bar based on the the 'level' attribute
// anymore, but still set it for third-party themes.
if (gURLBar)
gURLBar.setAttribute("level", level);
} else {
this.securityButton.hidden = true;
this.securityButton.removeAttribute("level");
if (gURLBar)
gURLBar.removeAttribute("level");
}
if (setHost && this._host)