| 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;
|
|
|