зеркало из https://github.com/mozilla/gecko-dev.git
Bug 207554. Crash in nshtmlselectoptionaccessible::getaccnextsibling(). r=kyle, sr=alecf
This commit is contained in:
Родитель
2bffcfef83
Коммит
a43f7ab64c
|
@ -462,7 +462,18 @@ NS_IMETHODIMP nsHTMLSelectOptionAccessible::GetAccNextSibling(nsIAccessible **aA
|
|||
// Get next sibling and if found create and return an accessible for it
|
||||
// When getting the next sibling of an SelectOption we could be working with
|
||||
// either an optgroup or an option. We process this tree as flat.
|
||||
|
||||
*aAccNextSibling = nsnull;
|
||||
if (mNextSibling) {
|
||||
if (mNextSibling != DEAD_END_ACCESSIBLE) {
|
||||
NS_IF_ADDREF(*aAccNextSibling = mNextSibling);
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
if (!mParent) {
|
||||
// Don't try the following algorithm without a parent select accessible
|
||||
return NS_OK;
|
||||
}
|
||||
nsCOMPtr<nsIDOMNode> next = mDOMNode, currentNode;
|
||||
nsCOMPtr<nsIAccessibilityService> accService(do_GetService("@mozilla.org/accessibilityService;1"));
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче