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

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h

Issue 2112243004: Ignores ARIA relations (e.g. aria-labelledby) that point to an invisible target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changed invisible to hidden to match ARIA Implementation Guide. Created 4 years, 5 months 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: third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
index c46b62018e8f6e787b0f91d3034d514a6ac718d4..d2207945e2b17f96a7da83c5117e03a9f0a700e1 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXNodeObject.h
@@ -69,7 +69,7 @@ protected:
String ariaAccessibilityDescription() const;
String ariaAutoComplete() const;
AccessibilityRole determineAriaRoleAttribute() const;
- void accessibilityChildrenFromAttribute(QualifiedName attr, AXObject::AXObjectVector&) const;
+ void accessibilityChildrenFromAttribute(QualifiedName attr, AXObject::AXObjectVector&, bool) const;
aboxhall 2016/07/08 17:12:35 Perhaps instead of passing "includeHiddenObjects"
bool hasContentEditableAttributeSet() const;
bool isTextControl() const override;

Powered by Google App Engine
This is Rietveld 408576698