| Index: Source/web/WebLocalFrameImpl.cpp
|
| diff --git a/Source/web/WebLocalFrameImpl.cpp b/Source/web/WebLocalFrameImpl.cpp
|
| index 29d679cea19eb70f711694adc53d8f81f36d86bd..246376636260f6c786434784a373fef5691fdb06 100644
|
| --- a/Source/web/WebLocalFrameImpl.cpp
|
| +++ b/Source/web/WebLocalFrameImpl.cpp
|
| @@ -1167,8 +1167,7 @@ bool WebLocalFrameImpl::selectWordAroundCaret()
|
| FrameSelection& selection = frame()->selection();
|
| if (selection.isNone() || selection.isRange())
|
| return false;
|
| - selectWordAroundPosition(frame(), selection.selection().visibleStart());
|
| - return true;
|
| + return frame()->selection().selectWordAroundPosition(selection.selection().visibleStart());
|
| }
|
|
|
| void WebLocalFrameImpl::selectRange(const WebPoint& base, const WebPoint& extent)
|
|
|