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

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

Issue 2436563003: Expose setSequentialFocusNavigationStartingPoint to accessibility. (Closed)
Patch Set: Created 4 years, 2 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: 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 547651c52c92a2f08a4757aed6a44f394fdea310..d790f3b9b0f9b44bca224858c70d163177012ff2 100644
--- a/third_party/WebKit/Source/web/WebAXObject.cpp
+++ b/third_party/WebKit/Source/web/WebAXObject.cpp
@@ -852,6 +852,13 @@ void WebAXObject::setSelectedTextRange(int selectionStart,
m_private->setSelection(AXObject::AXRange(selectionStart, selectionEnd));
}
+void WebAXObject::setSequentialFocusNavigationStartingPoint() const {
+ if (isDetached())
+ return;
+
+ m_private->setSequentialFocusNavigationStartingPoint();
+}
+
void WebAXObject::setValue(WebString value) const {
if (isDetached())
return;
« no previous file with comments | « third_party/WebKit/Source/modules/accessibility/AXObject.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698