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

Unified Diff: Source/core/accessibility/AXObject.h

Issue 51743003: Treat inert nodes as aria-hidden instead of aria-disabled. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rename, expectations, etc Created 7 years, 2 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: Source/core/accessibility/AXObject.h
diff --git a/Source/core/accessibility/AXObject.h b/Source/core/accessibility/AXObject.h
index a1ae0c5f3f2f5e90f98c284dc9df15b92559d919..215aae37f87cea238d58440d1fcb92b9eb7d0267 100644
--- a/Source/core/accessibility/AXObject.h
+++ b/Source/core/accessibility/AXObject.h
@@ -555,6 +555,8 @@ public:
static AccessibilityRole ariaRoleToWebCoreRole(const String&);
static IntRect boundingBoxForQuads(RenderObject*, const Vector<FloatQuad>&);
+ bool ariaIsHidden() const;
dmazzoni 2013/10/30 23:32:22 With the name ariaIsHidden, this should be grouped
falken 2013/10/31 02:27:40 Done.
+
protected:
AXID m_id;
AccessibilityChildrenVector m_children;
@@ -570,7 +572,6 @@ protected:
virtual void scrollTo(const IntPoint&) const { }
AccessibilityRole buttonRoleType() const;
- bool ariaIsHidden() const;
bool allowsTextRanges() const { return isTextControl(); }
unsigned getLengthForTextRange() const { return text().length(); }

Powered by Google App Engine
This is Rietveld 408576698