Bug 376013 [a11y]Incorrect text information sent in "object:text-changed:insert" events.

patch by Evan.Yan at sun.com r=aaronleventhal
This commit is contained in:
ginn.chen%sun.com 2007-06-06 07:56:52 +00:00
Родитель 74ac3d089b
Коммит 08e940f4ab
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1185,7 +1185,9 @@ NS_IMETHODIMP nsHyperTextAccessible::DidInsertNode(nsIDOMNode *aNode, nsIDOMNode
}
}
if (NS_FAILED(DOMPointToOffset(aNode, aPosition, &start)))
nsCOMPtr<nsIDOMNode> parentNode;
aNode->GetParentNode(getter_AddRefs(parentNode));
if (NS_FAILED(DOMPointToOffset(parentNode, aPosition, &start)))
return NS_OK;
nsCOMPtr<nsIAccessibleTextChangeEvent> event =