| Index: third_party/WebKit/Source/core/layout/LayoutText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutText.cpp b/third_party/WebKit/Source/core/layout/LayoutText.cpp
|
| index c399d9841f7a8c1e9b7ab6191946f807ac57238c..4a5cd4855c9db9745dd9a26bcdb748952dbbecda 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutText.cpp
|
| @@ -1920,10 +1920,7 @@ unsigned LayoutText::resolvedTextLength() const {
|
| }
|
|
|
| bool LayoutText::computeCanUseSimpleFontCodePath() const {
|
| - if (m_text.is8Bit())
|
| - return true;
|
| - return Character::characterRangeCodePath(characters16(), length()) ==
|
| - SimplePath;
|
| + return m_text.is8Bit();
|
| }
|
|
|
| #if ENABLE(ASSERT)
|
|
|