Bug 1168398 - Ensure that the presshell is initialized before attempting to scroll something into its view; r=enndeakin

This commit is contained in:
Ehsan Akhgari 2015-09-27 12:37:20 -04:00
Родитель b73f093357
Коммит 2eb09d4da3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1343,7 +1343,7 @@ nsFocusManager::SetFocusInner(nsIContent* aNewContent, int32_t aFlags,
nsCOMPtr<nsIDocShell> docShell = newWindow->GetDocShell();
nsCOMPtr<nsIPresShell> presShell = docShell->GetPresShell();
if (presShell)
if (presShell && presShell->DidInitialize())
ScrollIntoView(presShell, contentToFocus, aFlags);
}