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

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

Issue 692643005: ARIA state/property(aria-relevant,aria-busy) are not exposed correctly on MAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: content/browser/accessibility/browser_accessibility_cocoa.mm
diff --git a/content/browser/accessibility/browser_accessibility_cocoa.mm b/content/browser/accessibility/browser_accessibility_cocoa.mm
index ac81de7ab39d3f8fd4e8175fd59c8d220404de75..a924a3d66d0a3f3f9419e208e44443e08cae3128 100644
--- a/content/browser/accessibility/browser_accessibility_cocoa.mm
+++ b/content/browser/accessibility/browser_accessibility_cocoa.mm
@@ -1308,6 +1308,11 @@ NSDictionary* attributeToMethodNameMap = nil;
ui::AX_ATTR_LIVE_STATUS)) {
[ret addObjectsFromArray:[NSArray arrayWithObjects:
@"AXARIALive",
+ nil]];
+ }
+ if (browserAccessibility_->HasStringAttribute(
dmazzoni 2014/11/07 21:28:43 I'm not sure this change is needed. aria-relevant
shreeramk 2014/11/08 09:21:34 But for ARIA role log, Specs says: Note: Elements
dmazzoni 2014/11/11 06:44:02 That's correct. But we handle this in Blink, so if
shreeramk 2014/11/19 03:45:36 Yes correct its handled in blink. I was looking i
+ ui::AX_ATTR_CONTAINER_LIVE_RELEVANT)) {
+ [ret addObjectsFromArray:[NSArray arrayWithObjects:
@"AXARIARelevant",
nil]];
}
« no previous file with comments | « no previous file | content/test/data/accessibility/aria-relevant.html » ('j') | content/test/data/accessibility/aria-relevant.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698