| Index: third_party/WebKit/Source/core/frame/FrameView.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| index 7d57db8ba1101988585e2c7c2cab6fa1d7b7b5f2..eeca44f8c3a062d9070d4f56b286611e45af3679 100644
|
| --- a/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
|
| @@ -1933,9 +1933,11 @@ bool FrameView::computeCompositedSelection(LocalFrame& frame,
|
| }
|
| }
|
| selection.start.isTextDirectionRTL |=
|
| - primaryDirectionOf(*visibleSelection.start().anchorNode()) == RTL;
|
| + primaryDirectionOf(*visibleSelection.start().anchorNode()) ==
|
| + TextDirection::Rtl;
|
| selection.end.isTextDirectionRTL |=
|
| - primaryDirectionOf(*visibleSelection.end().anchorNode()) == RTL;
|
| + primaryDirectionOf(*visibleSelection.end().anchorNode()) ==
|
| + TextDirection::Rtl;
|
|
|
| return true;
|
| }
|
|
|