зеркало из https://github.com/mozilla/pjs.git
Bug 392797. Don't fake the results in nsTextAccessible::GetFrame(). r=surkov, a=dsicore
This commit is contained in:
Родитель
91f9f96d3b
Коммит
9c503623ac
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче