| Index: Source/web/WebAXObject.cpp
|
| diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
|
| index 5ec50ff479bed5a8bfdb9863db987c3071ad247a..dc33734ed39a9fbe87de28295023b9a9e69994e0 100644
|
| --- a/Source/web/WebAXObject.cpp
|
| +++ b/Source/web/WebAXObject.cpp
|
| @@ -237,6 +237,14 @@ WebString WebAXObject::ariaAutoComplete() const
|
| return m_private->ariaAutoComplete();
|
| }
|
|
|
| +WebString WebAXObject::placeholder() const
|
| +{
|
| + if (isDetached())
|
| + return WebString();
|
| +
|
| + return WebString(m_private->placeholder());
|
| +}
|
| +
|
| bool WebAXObject::isButtonStateMixed() const
|
| {
|
| if (isDetached())
|
|
|