зеркало из https://github.com/mozilla/gecko-dev.git
Bug 693399 - r=bzbarsky.
This commit is contained in:
Родитель
a9cf72330b
Коммит
0f6c2ebd98
|
@ -1600,6 +1600,16 @@ nsHTMLDocument::Open(const nsAString& aContentTypeOrUrl,
|
||||||
return NS_OK;
|
return NS_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// No calling document.open() without a script global object
|
||||||
|
if (!mScriptGlobalObject) {
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
nsPIDOMWindow* outer = GetWindow();
|
||||||
|
if (!outer || (GetInnerWindow() != outer->GetCurrentInnerWindow())) {
|
||||||
|
return NS_OK;
|
||||||
|
}
|
||||||
|
|
||||||
// check whether we're in the middle of unload. If so, ignore this call.
|
// check whether we're in the middle of unload. If so, ignore this call.
|
||||||
nsCOMPtr<nsIDocShell> shell = do_QueryReferent(mDocumentContainer);
|
nsCOMPtr<nsIDocShell> shell = do_QueryReferent(mDocumentContainer);
|
||||||
if (!shell) {
|
if (!shell) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче