Bug 392797. Don't fake the results in nsTextAccessible::GetFrame(). r=surkov, a=dsicore

This commit is contained in:
aaronleventhal%moonset.net 2007-08-21 03:29:00 +00:00
Родитель 91f9f96d3b
Коммит 9c503623ac
1 изменённых файлов: 1 добавлений и 10 удалений

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

@ -368,16 +368,7 @@ nsIFrame* nsAccessNode::GetFrame()
return nsnull;
nsCOMPtr<nsIContent> content(do_QueryInterface(mDOMNode));
while (content) {
nsIFrame* frame = shell->GetPrimaryFrameFor(content);
if (frame) {
return frame;
}
nsCOMPtr<nsIContent> tempContent = content->GetParent();
content = tempContent;
}
return nsnull;
return content ? shell->GetPrimaryFrameFor(content) : nsnull;
}
NS_IMETHODIMP