| 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..8ff2bdf6ece09137c27ad335fbef014dcab83748 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();
|
| }
|
|
|
| +WebAXAriaCurrent WebAXObject::ariaCurrent() const
|
| +{
|
| + if (isDetached())
|
| + return WebAXAriaCurrentUndefined;
|
| +
|
| + return static_cast<WebAXAriaCurrent>(m_private->ariaCurrent());
|
| +}
|
| +
|
| bool WebAXObject::isButtonStateMixed() const
|
| {
|
| if (isDetached())
|
|
|