| Index: Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index 4d94469cfc5d7415574e6b7cb2b89305ba389db3..74c700d0f68c9d7be18739b34a21d6e6d0cd7e41 100644
|
| --- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -379,6 +379,10 @@ PassRefPtrWillBeRawPtr<AnimatableValue> CSSAnimatableValueFactory::create(CSSPro
|
| // 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:
|
| + if (style.hasFontSizeAdjust())
|
| + return createFromDouble(style.fontSizeAdjust());
|
| + return AnimatableUnknown::create(CSSValueNone);
|
| case CSSPropertyFontStretch:
|
| return createFromFontStretch(style.fontStretch());
|
| case CSSPropertyFontWeight:
|
|
|