Index: Source/modules/accessibility/AXLayoutObject.cpp |
diff --git a/Source/modules/accessibility/AXLayoutObject.cpp b/Source/modules/accessibility/AXLayoutObject.cpp |
index 744cc7b3ff6fcb7dba86094b60450925f72334e4..d06aafdb2ffbd9d9381fd847a511886a516ab5a4 100644 |
--- a/Source/modules/accessibility/AXLayoutObject.cpp |
+++ b/Source/modules/accessibility/AXLayoutObject.cpp |
@@ -1770,7 +1770,7 @@ void AXLayoutObject::handleAriaExpandedChanged() |
// Post that the row count changed. |
if (containerParent) |
- axObjectCache()->postNotification(containerParent, document(), AXObjectCacheImpl::AXRowCountChanged, true); |
+ axObjectCache()->postNotification(containerParent, AXObjectCacheImpl::AXRowCountChanged, true); |
// Post that the specific row either collapsed or expanded. |
AccessibilityExpanded expanded = isExpanded(); |
@@ -1782,7 +1782,7 @@ void AXLayoutObject::handleAriaExpandedChanged() |
if (expanded == ExpandedCollapsed) |
notification = AXObjectCacheImpl::AXRowCollapsed; |
- axObjectCache()->postNotification(this, document(), notification, true); |
+ axObjectCache()->postNotification(this, notification, true); |
} |
} |