| Index: third_party/WebKit/Source/web/WebAXObject.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebAXObject.cpp b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| index a15c5f952a0649c33832e37d1eb949297a9dc05a..530489a30daea50b8430ee95cc101135c728dd00 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -600,6 +600,17 @@ WebString WebAXObject::liveRegionStatus() const
|
| return m_private->liveRegionStatus();
|
| }
|
|
|
| +WebAXObject WebAXObject::liveRegionRoot() const
|
| +{
|
| + if (isDetached())
|
| + return WebAXObject();
|
| +
|
| + AXObject* liveRegionRoot = m_private->liveRegionRoot();
|
| + if (liveRegionRoot)
|
| + return WebAXObject(liveRegionRoot);
|
| + return WebAXObject();
|
| +}
|
| +
|
| bool WebAXObject::containerLiveRegionAtomic() const
|
| {
|
| if (isDetached())
|
|
|