This commit is contained in:
Blake Kaplan 2010-05-28 16:18:23 -07:00
Родитель 76cde0c24a
Коммит f2a9aa675b
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -6627,7 +6627,9 @@ nsWindowSH::NewResolve(nsIXPConnectWrappedNative *wrapper, JSContext *cx,
// above, we have to ensure here that our window has a current
// inner window so that the location object we return will work.
win->EnsureInnerWindow();
if (win->IsOuterWindow()) {
win->EnsureInnerWindow();
}
nsCOMPtr<nsIDOMLocation> location;
rv = win->GetLocation(getter_AddRefs(location));