Bug 359718 - Page info: Security tab never shown. r=gavin, mpa=darin.

This commit is contained in:
mozilla.mano%sent.com 2006-11-22 21:23:35 +00:00
Родитель 09061e9b7b
Коммит b1b34b0989
1 изменённых файлов: 6 добавлений и 4 удалений

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

@ -65,11 +65,13 @@
if ("arguments" in window && window.arguments.length > 0 && if ("arguments" in window && window.arguments.length > 0 &&
window.arguments[0] && window.arguments[0].doc) window.arguments[0] && window.arguments[0].doc)
{ {
// w = window.arguments[0].doc; w = window.arguments[0].doc.defaultView;
if (w != w.top) {
// We don't have separate info for a frame, return null until further notice // We don't have separate info for a frame, return null until further notice
// (see bug 138479) // (see bug 138479)
return null; return null;
} }
}
else if ("gBrowser" in window.opener) else if ("gBrowser" in window.opener)
w = window.opener.gBrowser.contentWindow; w = window.opener.gBrowser.contentWindow;
else else