Bug 974127 - nsContentUtils::IsUserFocusIgnored can loop infinitely, r=ehsan

--HG--
extra : rebase_source : 303c25586b6ff1c326241d9aa192fc8235359083
This commit is contained in:
Olli Pettay 2014-02-21 01:52:02 +02:00
Родитель bf37f06673
Коммит 6ec87044ea
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -5842,9 +5842,7 @@ nsContentUtils::IsUserFocusIgnored(nsINode* aNode)
return true;
}
nsPIDOMWindow* win = aNode->OwnerDoc()->GetWindow();
if (win) {
aNode = win->GetFrameElementInternal();
}
aNode = win ? win->GetFrameElementInternal() : nullptr;
}
return false;