bug 402686. Crashes @CheckVisibilityInParent. r=ginn.chen, a=schrep

This commit is contained in:
aaronleventhal%moonset.net 2007-11-13 03:05:34 +00:00
Родитель 1ea2425868
Коммит 7e26cb7464
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -3265,6 +3265,9 @@ PRBool nsAccessible::CheckVisibilityInParentChain(nsIDocument* aDocument, nsIVie
nsIContent* content = parentDoc->FindContentForSubDocument(document);
if (content != nsnull) {
nsIPresShell* shell = parentDoc->GetPrimaryShell();
if (!shell) {
return PR_FALSE;
}
nsIFrame* frame = shell->GetPrimaryFrameFor(content);
while (frame != nsnull && !frame->HasView()) {
frame = frame->GetParent();