130337: Fix Get New Themes when browser.block.target_new_window is set. r=jfrancis sr=kin

This commit is contained in:
akkana%netscape.com 2002-09-12 19:35:55 +00:00
Родитель 508768a403
Коммит ea487d3ccc
1 изменённых файлов: 5 добавлений и 3 удалений

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

@ -4743,10 +4743,12 @@ nsDocShell::InternalLoad(nsIURI * aURI,
//
if (mDisallowPopupWindows) {
PRBool bIsChromeOrResource = PR_FALSE;
aURI->SchemeIs("chrome", &bIsChromeOrResource);
mCurrentURI->SchemeIs("chrome", &bIsChromeOrResource);
if (!bIsChromeOrResource) {
aURI->SchemeIs("resource", &bIsChromeOrResource);
aURI->SchemeIs("chrome", &bIsChromeOrResource);
if (!bIsChromeOrResource) {
aURI->SchemeIs("resource", &bIsChromeOrResource);
}
}
if (!bIsChromeOrResource) {
if (name.EqualsIgnoreCase("_blank") ||