| 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 45f7075fbb40301cf02d032036dbd0f65acb8c56..1bd05175f840f70ad4ce63d77712886ab40a0067 100644
|
| --- a/third_party/WebKit/Source/web/WebAXObject.cpp
|
| +++ b/third_party/WebKit/Source/web/WebAXObject.cpp
|
| @@ -241,6 +241,14 @@ WebString WebAXObject::ariaAutoComplete() const
|
| return m_private->ariaAutoComplete();
|
| }
|
|
|
| +WebAXAriaCurrentState WebAXObject::ariaCurrentState() const
|
| +{
|
| + if (isDetached())
|
| + return WebAXAriaCurrentStateUndefined;
|
| +
|
| + return static_cast<WebAXAriaCurrentState>(m_private->ariaCurrentState());
|
| +}
|
| +
|
| bool WebAXObject::isButtonStateMixed() const
|
| {
|
| if (isDetached())
|
|
|