| Index: third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp b/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| index f10791f5c6d867a2e44f0a9551416bdb2b108159..17c3fa37b6ff98407670a8506ad9f9278713975d 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| @@ -332,8 +332,7 @@ void FontBuilder::updateAdjustedSize(FontDescription& fontDescription, const Com
|
| adjustedSize = getComputedSizeFromSpecifiedSize(fontDescription, style.effectiveZoom(), adjustedSize);
|
|
|
| float multiplier = style.textAutosizingMultiplier();
|
| - if (multiplier > 1)
|
| - adjustedSize = TextAutosizer::computeAutosizedFontSize(adjustedSize, multiplier);
|
| + adjustedSize = TextAutosizer::computeAutosizedFontSize(adjustedSize, multiplier);
|
| fontDescription.setAdjustedSize(adjustedSize);
|
| }
|
|
|
| @@ -341,8 +340,7 @@ void FontBuilder::updateComputedSize(FontDescription& fontDescription, const Com
|
| {
|
| float computedSize = getComputedSizeFromSpecifiedSize(fontDescription, style.effectiveZoom(), fontDescription.specifiedSize());
|
| float multiplier = style.textAutosizingMultiplier();
|
| - if (multiplier > 1)
|
| - computedSize = TextAutosizer::computeAutosizedFontSize(computedSize, multiplier);
|
| + computedSize = TextAutosizer::computeAutosizedFontSize(computedSize, multiplier);
|
| fontDescription.setComputedSize(computedSize);
|
| }
|
|
|
|
|