| Index: third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp b/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
|
| index 5b5e954eb7963f1b0a6e2788047bc3c4c60a8942..5209755444c05235c6c4c28e744a260392a94675 100644
|
| --- a/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/state_machines/StateMachineUtil.cpp
|
| @@ -70,8 +70,9 @@ bool isGraphemeBreak(UChar32 prevCodePoint, UChar32 nextCodePoint) {
|
| return true;
|
|
|
| // Rule GB6, L x (L | V | LV | LVT)
|
| - if (prevProp == U_GCB_L && (nextProp == U_GCB_L || nextProp == U_GCB_V ||
|
| - nextProp == U_GCB_LV || nextProp == U_GCB_LVT))
|
| + if (prevProp == U_GCB_L &&
|
| + (nextProp == U_GCB_L || nextProp == U_GCB_V || nextProp == U_GCB_LV ||
|
| + nextProp == U_GCB_LVT))
|
| return false;
|
|
|
| // Rule GB7, (LV | V) x (V | T)
|
|
|