Bug 810572, part2 - remove 'Accessible' postfix from AccTypes constants, r=tbsaunde, sr=roc

This commit is contained in:
Alexander Surkov
2012-12-12 19:04:12 +09:00
parent 84eb926546
commit 7b6a8051eb
26 changed files with 101 additions and 102 deletions

View File

@@ -133,10 +133,10 @@ nsImageControlFrame::AccessibleType()
{
if (mContent->Tag() == nsGkAtoms::button ||
mContent->Tag() == nsGkAtoms::input) {
return a11y::eHTMLButtonAccessible;
return a11y::eHTMLButton;
}
return a11y::eNoAccessible;
return a11y::eNoType;
}
#endif