Index: Source/modules/accessibility/AXObject.cpp |
diff --git a/Source/modules/accessibility/AXObject.cpp b/Source/modules/accessibility/AXObject.cpp |
index 7264084d6244957d2b491cb92e1da4e7182f268f..c4cd8bca65a3e75fbfef51cc8ca456d155ab1e5f 100644 |
--- a/Source/modules/accessibility/AXObject.cpp |
+++ b/Source/modules/accessibility/AXObject.cpp |
@@ -237,6 +237,7 @@ AXObject::AXObject(AXObjectCacheImpl* axObjectCache) |
, m_cachedIsInertOrAriaHidden(false) |
, m_cachedIsDescendantOfBarrenParent(false) |
, m_cachedIsDescendantOfDisabledNode(false) |
+ , m_cachedHasInheritedPresentationalRole(false) |
, m_cachedLiveRegionRoot(0) |
, m_axObjectCache(axObjectCache) |
{ |
@@ -373,6 +374,7 @@ void AXObject::updateCachedAttributeValuesIfNeeded() const |
m_cachedIsInertOrAriaHidden = computeIsInertOrAriaHidden(); |
m_cachedIsDescendantOfBarrenParent = computeIsDescendantOfBarrenParent(); |
m_cachedIsDescendantOfDisabledNode = computeIsDescendantOfDisabledNode(); |
+ m_cachedHasInheritedPresentationalRole = computeHasInheritedPresentationalRole(); |
m_cachedIsIgnored = computeAccessibilityIsIgnored(); |
m_cachedLiveRegionRoot = isLiveRegion() ? |
this : |