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

Unified Diff: Source/web/WebAXObject.cpp

Issue 885163002: [Contextual Search] Check for ARIA widget roles. (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
Index: Source/web/WebAXObject.cpp
diff --git a/Source/web/WebAXObject.cpp b/Source/web/WebAXObject.cpp
index 48638a936fd7e590bb661ed1f67e574ca6d12993..05fde347358c2dbc5c5d58b2e07ae69455667791 100644
--- a/Source/web/WebAXObject.cpp
+++ b/Source/web/WebAXObject.cpp
@@ -1325,4 +1325,9 @@ WebAXObject::operator WTF::PassRefPtr<AXObject>() const
return m_private.get();
}
+bool WebAXObject::includesARIAWidgetRole(const WebString& role)
+{
+ return AXObject::includesARIAWidgetRole(role);
+}
+
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698