| Index: third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index 2b2394e7b602b5cad455db9e374c4b2ecf65b5de..6641d8abc3643b2a574912dfe67815257a195630 100644
|
| --- a/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -430,10 +430,12 @@ PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create(
|
| case CSSPropertyFloodOpacity:
|
| return createFromDouble(style.floodOpacity());
|
| case CSSPropertyFontSize:
|
| - // Must pass a specified size to setFontSize if Text Autosizing is enabled, but a computed size
|
| - // if text zoom is enabled (if neither is enabled it's irrelevant as they're probably the same).
|
| - // FIXME: Should we introduce an option to pass the computed font size here, allowing consumers to
|
| - // enable text zoom rather than Text Autosizing? See http://crbug.com/227545.
|
| + // Must pass a specified size to setFontSize if Text Autosizing is
|
| + // enabled, but a computed size if text zoom is enabled (if neither is
|
| + // enabled it's irrelevant as they're probably the same).
|
| + // FIXME: Should we introduce an option to pass the computed font size
|
| + // here, allowing consumers to enable text zoom rather than Text
|
| + // Autosizing? See http://crbug.com/227545.
|
| return createFromDouble(style.specifiedFontSize());
|
| case CSSPropertyFontSizeAdjust:
|
| return style.hasFontSizeAdjust()
|
|
|