Index: Source/web/WebAXObject.cpp |
diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp |
index 90cd1617df84d5e330040e70d1aea3a0594fb706..9dad1280444274211e319864a9c0124395d362a4 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()) |