Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Unified Diff: third_party/WebKit/Source/web/WebAXObject.cpp

Issue 2492083002: Implement aria-placeholder (Closed)
Patch Set: Rebaseline android placeholder test Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | third_party/WebKit/public/web/WebAXEnums.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c0e2205b9ce8bbdf3a20df8119cd9d89aff7919b..b732aabd1838fa593c19fd27cd81b4c9a9267ed4 100644
--- a/third_party/WebKit/Source/web/WebAXObject.cpp
+++ b/third_party/WebKit/Source/web/WebAXObject.cpp
@@ -978,14 +978,11 @@ WebString WebAXObject::description(
return result;
}
-WebString WebAXObject::placeholder(WebAXNameFrom nameFrom,
- WebAXDescriptionFrom descriptionFrom) const {
+WebString WebAXObject::placeholder(WebAXNameFrom nameFrom) const {
if (isDetached())
return WebString();
- return m_private->placeholder(
- static_cast<AXNameFrom>(nameFrom),
- static_cast<AXDescriptionFrom>(descriptionFrom));
+ return m_private->placeholder(static_cast<AXNameFrom>(nameFrom));
}
bool WebAXObject::supportsRangeValue() const {
« no previous file with comments | « third_party/WebKit/Source/web/AssertMatchingEnums.cpp ('k') | third_party/WebKit/public/web/WebAXEnums.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698