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,10 +65,12 @@
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;
// We don't have separate info for a frame, return null until further notice if (w != w.top) {
// (see bug 138479) // We don't have separate info for a frame, return null until further notice
return null; // (see bug 138479)
return null;
}
} }
else if ("gBrowser" in window.opener) else if ("gBrowser" in window.opener)
w = window.opener.gBrowser.contentWindow; w = window.opener.gBrowser.contentWindow;