| Index: third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| index 54996390d12205474a717055e30bb1efb70d448d..3a373c2b192064caddd7d2658afa4d6772d16d37 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSFontSizeInterpolationType.cpp
|
| @@ -119,7 +119,7 @@ void CSSFontSizeInterpolationType::apply(const InterpolableValue& interpolableVa
|
| const FontDescription& parentFont = environment.state().parentFontDescription();
|
| Length fontSizeLength = CSSLengthInterpolationType::resolveInterpolableLength(interpolableValue, nullptr, environment.state().fontSizeConversionData(), ValueRangeNonNegative);
|
| float fontSize = floatValueForLength(fontSizeLength, parentFont.getSize().value);
|
| - environment.state().fontBuilder().setSize(FontDescription::Size(0, fontSize, !fontSizeLength.hasPercent() || parentFont.isAbsoluteSize()));
|
| + environment.state().fontBuilder().setSize(FontDescription::Size(0, fontSize, !fontSizeLength.isPercentOrCalc() || parentFont.isAbsoluteSize()));
|
| }
|
|
|
| } // namespace blink
|
|
|