| Index: third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| index 5c05772642645297c144ac83287cb1dfe9f4a22b..276da9a6da7ec1ca3610a5abf3818567fa5b802c 100644
|
| --- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGInlineText.cpp
|
| @@ -197,7 +197,7 @@ inline bool isValidSurrogatePair(const TextRun& run, unsigned index)
|
| {
|
| if (!U16_IS_LEAD(run[index]))
|
| return false;
|
| - if (index + 1 >= static_cast<unsigned>(run.length()))
|
| + if (index + 1 >= run.length())
|
| return false;
|
| return U16_IS_TRAIL(run[index + 1]);
|
| }
|
| @@ -275,7 +275,7 @@ void LayoutSVGInlineText::addMetricsFromRun(
|
|
|
| const float cachedFontHeight = scaledFont().getFontMetrics().floatHeight() / m_scalingFactor;
|
| const bool preserveWhiteSpace = styleRef().whiteSpace() == PRE;
|
| - const unsigned runLength = static_cast<unsigned>(run.length());
|
| + const unsigned runLength = run.length();
|
|
|
| // TODO(pdr): Character-based iteration is ambiguous and error-prone. It
|
| // should be unified under a single concept. See: https://crbug.com/593570
|
|
|