summaryrefslogtreecommitdiffstats
path: root/accessible/mac/mozAccessible.mm
diff options
context:
space:
mode:
Diffstat (limited to 'accessible/mac/mozAccessible.mm')
-rw-r--r--accessible/mac/mozAccessible.mm16
1 files changed, 14 insertions, 2 deletions
diff --git a/accessible/mac/mozAccessible.mm b/accessible/mac/mozAccessible.mm
index aa98496511..0609cc7afc 100644
--- a/accessible/mac/mozAccessible.mm
+++ b/accessible/mac/mozAccessible.mm
@@ -295,7 +295,8 @@ using namespace mozilla::a11y;
- (NSString*)moxRole {
#define ROLE(geckoRole, stringRole, ariaRole, atkRole, macRole, macSubrole, \
- msaaRole, ia2Role, androidClass, iosIsElement, nameRule) \
+ msaaRole, ia2Role, androidClass, iosIsElement, uiaControlType, \
+ nameRule) \
case roles::geckoRole: \
return macRole;
@@ -366,7 +367,8 @@ using namespace mozilla::a11y;
}
#define ROLE(geckoRole, stringRole, ariaRole, atkRole, macRole, macSubrole, \
- msaaRole, ia2Role, androidClass, iosIsElement, nameRule) \
+ msaaRole, ia2Role, androidClass, iosIsElement, uiaControlType, \
+ nameRule) \
case roles::geckoRole: \
if (![macSubrole isEqualToString:NSAccessibilityUnknownSubrole]) { \
return macSubrole; \
@@ -646,6 +648,16 @@ struct RoleDescrComparator {
return @"additions text";
}
+- (NSString*)moxPlaceholderValue {
+ // First, check for plaecholder HTML attribute
+ if (NSString* placeholder = utils::GetAccAttr(self, nsGkAtoms::placeholder)) {
+ return placeholder;
+ }
+
+ // If no placeholder HTML attribute, check for the aria version.
+ return utils::GetAccAttr(self, nsGkAtoms::aria_placeholder);
+}
+
- (id)moxTitleUIElement {
MOZ_ASSERT(mGeckoAccessible);