| 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*)
|
|
|