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

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.
Chris Guillory 2010/11/29 22:38:44 Nit: Capitalize the 'C' in WebCore (since the 'W'
+ // 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(
@@ -222,6 +225,9 @@
} else if ([self role] == NSAccessibilityCheckBoxRole) {
return [NSNumber numberWithInt:GetState(
browserAccessibility_, WebAccessibility::STATE_CHECKED) ? 1 : 0];
+ } else if ([self role] == NSAccessibilityButtonRole) {
+ // Does not make sense for pure buttons.
Chris Guillory 2010/11/29 22:38:44 What does not make sense for pure buttons? AXValue
+ return @"";
} else {
return base::SysUTF16ToNSString(browserAccessibility_->value());
}
« 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