Bug 764718 - Part 2: Make window.close work on windows opened via window.open from <iframe mozbrowser>, when OOP is disabled. r=bz

This commit is contained in:
Justin Lebar 2012-06-21 11:58:49 -04:00
Родитель 8c698df741
Коммит 837cab5eb4
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -851,14 +851,14 @@ nsContentTreeOwner::ProvideWindow(nsIDOMWindow* aParent,
!(aChromeFlags & (nsIWebBrowserChrome::CHROME_MODAL |
nsIWebBrowserChrome::CHROME_OPENAS_DIALOG |
nsIWebBrowserChrome::CHROME_OPENAS_CHROME))) {
bool openSucceeded =
*aWindowIsNew =
BrowserElementParent::OpenWindowInProcess(aParent, aURI, aName,
aFeatures, aReturn);
// If OpenWindowInProcess failed (perhaps because the embedder blocked the
// popup), tell our caller not to proceed trying to create a new window
// through other means.
return openSucceeded ? NS_OK : NS_ERROR_ABORT;
return *aWindowIsNew ? NS_OK : NS_ERROR_ABORT;
}
// Where should we open this?