| Index: Source/core/accessibility/AXNodeObject.cpp
|
| diff --git a/Source/core/accessibility/AXNodeObject.cpp b/Source/core/accessibility/AXNodeObject.cpp
|
| index 1140082d95d1d0efe228b4ba3fd2eb7612863ddc..7a08650708dfe5bc8a2eaf8c3b83d960a40a2b44 100644
|
| --- a/Source/core/accessibility/AXNodeObject.cpp
|
| +++ b/Source/core/accessibility/AXNodeObject.cpp
|
| @@ -1623,7 +1623,7 @@ void AXNodeObject::childrenChanged()
|
| // In other words, they need to be sent even when the screen reader has not accessed this live region since the last update.
|
|
|
| // If this element supports ARIA live regions, then notify the AT of changes.
|
| - if (parent->supportsARIALiveRegion())
|
| + if (parent->isLiveRegion())
|
| axObjectCache()->postNotification(parent, parent->document(), AXObjectCacheImpl::AXLiveRegionChanged, true);
|
|
|
| // If this element is an ARIA text box or content editable, post a "value changed" notification on it
|
| @@ -1654,7 +1654,7 @@ void AXNodeObject::textChanged()
|
| if (!parent)
|
| continue;
|
|
|
| - if (parent->supportsARIALiveRegion())
|
| + if (parent->isLiveRegion())
|
| cache->postNotification(parentNode, AXObjectCacheImpl::AXLiveRegionChanged, true);
|
|
|
| // If this element is an ARIA text box or content editable, post a "value changed" notification on it
|
|
|