Bug 681674 - aria-autocomplete not supported on standard form text input controls. r=tbsaunde,MarcoZ

This commit is contained in:
David Bolter
2011-09-01 11:37:24 -04:00
parent 1f273297da
commit 922dd4cc6c
3 changed files with 21 additions and 0 deletions

View File

@@ -446,6 +446,15 @@ NS_IMETHODIMP nsHTMLTextFieldAccessible::GetValue(nsAString& _retval)
return NS_ERROR_FAILURE;
}
void
nsHTMLTextFieldAccessible::ApplyARIAState(PRUint64* aState)
{
nsHyperTextAccessibleWrap::ApplyARIAState(aState);
nsStateMapEntry::MapToStates(mContent, aState, eARIAAutoComplete);
}
PRUint64
nsHTMLTextFieldAccessible::NativeState()
{