| Index: Source/core/layout/LayoutText.cpp
|
| diff --git a/Source/core/layout/LayoutText.cpp b/Source/core/layout/LayoutText.cpp
|
| index e6fcba133d1681440e6746f2d223ba77f6b999b3..a3379781c48d689fef5eb0b161c22d4dca597471 100644
|
| --- a/Source/core/layout/LayoutText.cpp
|
| +++ b/Source/core/layout/LayoutText.cpp
|
| @@ -1819,6 +1819,8 @@ int LayoutText::nextOffset(int current) const
|
|
|
| bool LayoutText::computeCanUseSimpleFontCodePath() const
|
| {
|
| + if (RuntimeEnabledFeatures::alwaysUseComplexTextEnabled())
|
| + return false;
|
| if (m_text.is8Bit())
|
| return true;
|
| return Character::characterRangeCodePath(characters16(), length()) == SimplePath;
|
|
|