зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1266178 Make ServiceWorkerClient not assert if the document doesn't have an outer window. r=ehsan
This commit is contained in:
Родитель
9d1868e837
Коммит
15090e7a5c
|
@ -35,6 +35,7 @@ NS_INTERFACE_MAP_END
|
|||
|
||||
ServiceWorkerClientInfo::ServiceWorkerClientInfo(nsIDocument* aDoc)
|
||||
: mWindowId(0)
|
||||
, mFrameType(FrameType::None)
|
||||
{
|
||||
MOZ_ASSERT(aDoc);
|
||||
nsresult rv = aDoc->GetOrCreateId(mClientId);
|
||||
|
@ -64,8 +65,9 @@ ServiceWorkerClientInfo::ServiceWorkerClientInfo(nsIDocument* aDoc)
|
|||
}
|
||||
|
||||
RefPtr<nsGlobalWindow> outerWindow = nsGlobalWindow::Cast(aDoc->GetWindow());
|
||||
MOZ_ASSERT(outerWindow);
|
||||
if (!outerWindow->IsTopLevelWindow()) {
|
||||
if (!outerWindow) {
|
||||
MOZ_ASSERT(mFrameType == FrameType::None);
|
||||
} else if (!outerWindow->IsTopLevelWindow()) {
|
||||
mFrameType = FrameType::Nested;
|
||||
} else if (outerWindow->HadOriginalOpener()) {
|
||||
mFrameType = FrameType::Auxiliary;
|
||||
|
|
Загрузка…
Ссылка в новой задаче