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

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

Issue 1012663002: Aria disabled does not apply to descendant elements (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Changed methods names to ..DisabledNode() Created 5 years, 9 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
« no previous file with comments | « Source/modules/accessibility/AXNodeObject.cpp ('k') | Source/modules/accessibility/AXObject.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/accessibility/AXObject.h
diff --git a/Source/modules/accessibility/AXObject.h b/Source/modules/accessibility/AXObject.h
index 21061d1669ad8966f8f99bc2931fa6c7825ba2aa..ff583026bce65fb77fbb37f6ccabc97a8596f1f4 100644
--- a/Source/modules/accessibility/AXObject.h
+++ b/Source/modules/accessibility/AXObject.h
@@ -429,6 +429,8 @@ public:
bool computeIsInertOrAriaHidden() const;
bool isDescendantOfBarrenParent() const;
bool computeIsDescendantOfBarrenParent() const;
+ bool isDescendantOfDisabledNode() const;
+ bool computeIsDescendantOfDisabledNode() const;
bool lastKnownIsIgnoredValue();
void setLastKnownIsIgnoredValue(bool);
@@ -649,6 +651,7 @@ protected:
mutable bool m_cachedIsIgnored : 1;
mutable bool m_cachedIsInertOrAriaHidden : 1;
mutable bool m_cachedIsDescendantOfBarrenParent : 1;
+ mutable bool m_cachedIsDescendantOfDisabledNode : 1;
mutable const AXObject* m_cachedLiveRegionRoot;
AXObjectCacheImpl* m_axObjectCache;
« no previous file with comments | « Source/modules/accessibility/AXNodeObject.cpp ('k') | Source/modules/accessibility/AXObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698