Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3870)

Unified Diff: chrome/browser/accessibility/browser_accessibility_cocoa.mm

Issue 5310009: Do not return an AXValue for buttons to match Safari.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/accessibility/browser_accessibility_cocoa.mm
===================================================================
--- chrome/browser/accessibility/browser_accessibility_cocoa.mm (revision 66823)
+++ chrome/browser/accessibility/browser_accessibility_cocoa.mm (working copy)
@@ -210,6 +210,9 @@
WebAccessibility::ATTR_HELP);
}
if ([attribute isEqualToString:NSAccessibilityValueAttribute]) {
+ // WebCore uses an attachmentView to get the below behavior.
+ // We do not have any native views backing this object, so need
+ // to approximate Cocoa ax behavior best as we can.
if ([self role] == @"AXHeading") {
NSString* headingLevel =
NSStringForWebAccessibilityAttribute(
@@ -219,6 +222,9 @@
return [NSNumber numberWithInt:
[[headingLevel substringFromIndex:1] intValue]];
}
+ } else if ([self role] == NSAccessibilityButtonRole) {
+ // AXValue does not make sense for pure buttons.
+ return @"";
} else if ([self role] == NSAccessibilityCheckBoxRole) {
return [NSNumber numberWithInt:GetState(
browserAccessibility_, WebAccessibility::STATE_CHECKED) ? 1 : 0];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698