Bug 1220827 - Replace question comment in nsHTMLDocument::Open with an explanatory comment to explain why we create a new Window. r=smaug

This commit is contained in:
Jonathan Watt 2015-10-05 18:34:46 +01:00
Родитель b12d2b88dd
Коммит 75eee57062
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -1610,8 +1610,9 @@ nsHTMLDocument::Open(JSContext* cx,
}
#endif
// Should this pass true for aForceReuseInnerWindow?
rv = window->SetNewDocument(this, nullptr, false);
// Per spec, we pass false here so that a new Window is created.
rv = window->SetNewDocument(this, nullptr,
/* aForceReuseInnerWindow */ false);
if (rv.Failed()) {
return nullptr;
}