зеркало из https://github.com/mozilla/gecko-dev.git
bug 432967 - WARNING: NS_ENSURE_TRUE(aContent) failed: file nsAccessibilityUtils.cpp, line 262, patch by Ginn Chen <ginn.chen@sun.com>, r=aaronlev
This commit is contained in:
Родитель
86ba7aa703
Коммит
e10f58bc43
|
@ -2659,8 +2659,11 @@ nsAccessible::GetNumActions(PRUint8 *aNumActions)
|
|||
if (IsDefunct())
|
||||
return NS_ERROR_FAILURE;
|
||||
|
||||
nsCOMPtr<nsIContent> content = GetRoleContent(mDOMNode);
|
||||
if (!content)
|
||||
return NS_OK;
|
||||
|
||||
// Check if it's an simple xlink.
|
||||
nsCOMPtr<nsIContent> content(do_QueryInterface(mDOMNode));
|
||||
if (nsAccUtils::IsXLink(content)) {
|
||||
*aNumActions = 1;
|
||||
return NS_OK;
|
||||
|
|
Загрузка…
Ссылка в новой задаче