| 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 45765d62a64bb225d90a695a373c76023a7318b1..a7fd1801480bf1652727e3822375764fd38187da 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -591,6 +591,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())
|
|
|