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

Unified Diff: Source/web/WebAXObject.cpp

Issue 863283005: Support aria-dropeffect attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 months 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 | « Source/modules/accessibility/AXObject.h ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebAXObject.cpp
diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
index 2b9c3defb5eb8c5667475bca7a4290668f31fd24..48638a936fd7e590bb661ed1f67e574ca6d12993 100644
--- a/Source/web/WebAXObject.cpp
+++ b/Source/web/WebAXObject.cpp
@@ -477,6 +477,14 @@ bool WebAXObject::ariaDescribedby(WebVector<WebAXObject>& describedbyElements) c
return true;
}
+WebString WebAXObject::ariaDropEffect() const
+{
+ if (isDetached())
+ return WebString();
+
+ return WebString(m_private->ariaDropEffect());
+}
+
bool WebAXObject::ariaHasPopup() const
{
if (isDetached())
« no previous file with comments | « Source/modules/accessibility/AXObject.h ('k') | public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698