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

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

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dmazzoni comments Created 3 years, 11 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/AXObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.h b/third_party/WebKit/Source/modules/accessibility/AXObject.h
index 1473866ab84843cae549d1f7ece5e11e0d64fcae..41c5453cb51118860015817493380a5bcb232178 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXObject.h
@@ -368,11 +368,12 @@ enum AXIgnoredReason {
AXActiveModalDialog,
AXAncestorDisallowsChild,
AXAncestorIsLeafNode,
- AXAriaHidden,
- AXAriaHiddenRoot,
+ AXAriaHiddenElement,
+ AXAriaHiddenSubtree,
AXEmptyAlt,
AXEmptyText,
- AXInert,
+ AXInertElement,
+ AXInertSubtree,
AXInheritsPresentation,
AXLabelContainer,
AXLabelFor,
@@ -1048,6 +1049,8 @@ class MODULES_EXPORT AXObject : public GarbageCollectedFinalized<AXObject> {
return nullptr;
}
+ const AXObject* inertRoot() const;
+
mutable Member<AXObject> m_parent;
// The following cached attribute values (the ones starting with m_cached*)

Powered by Google App Engine
This is Rietveld 408576698