| Index: third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| index cbb0e6d877bfc788cab93a2113662ca1c6c1c971..75ba25eb19616bf1d5d9a04a12fbe68f35360b59 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXObject.cpp
|
| @@ -1118,13 +1118,13 @@ const AtomicString& AXObject::containerLiveRegionRelevant() const
|
| bool AXObject::containerLiveRegionAtomic() const
|
| {
|
| updateCachedAttributeValuesIfNeeded();
|
| - return m_cachedLiveRegionRoot ? m_cachedLiveRegionRoot->liveRegionAtomic() : false;
|
| + return m_cachedLiveRegionRoot && m_cachedLiveRegionRoot->liveRegionAtomic();
|
| }
|
|
|
| bool AXObject::containerLiveRegionBusy() const
|
| {
|
| updateCachedAttributeValuesIfNeeded();
|
| - return m_cachedLiveRegionRoot ? m_cachedLiveRegionRoot->liveRegionBusy() : false;
|
| + return m_cachedLiveRegionRoot && m_cachedLiveRegionRoot->liveRegionBusy();
|
| }
|
|
|
| void AXObject::markCachedElementRectDirty() const
|
|
|