mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-05 12:05:22 +00:00
Bug 207554. Crash in nshtmlselectoptionaccessible::getaccnextsibling(). r=kyle, sr=alecf
This commit is contained in:
parent
2bffcfef83
commit
a43f7ab64c
@ -462,7 +462,18 @@ NS_IMETHODIMP nsHTMLSelectOptionAccessible::GetAccNextSibling(nsIAccessible **aA
|
|||||||
// Get next sibling and if found create and return an accessible for it
|
// 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
|
// 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.
|
// either an optgroup or an option. We process this tree as flat.
|
||||||
|
|
||||||
*aAccNextSibling = nsnull;
|
*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<nsIDOMNode> next = mDOMNode, currentNode;
|
||||||
nsCOMPtr<nsIAccessibilityService> accService(do_GetService("@mozilla.org/accessibilityService;1"));
|
nsCOMPtr<nsIAccessibilityService> accService(do_GetService("@mozilla.org/accessibilityService;1"));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user