| Index: sky/engine/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/sky/engine/core/animation/css/CSSAnimatableValueFactory.cpp b/sky/engine/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index 84a5fbdfe6af815c7602bafedba29937b4478159..6d18fa0d31a2e3bdf5c1f44d4fc6bdadb5c1d74a 100644
|
| --- a/sky/engine/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/sky/engine/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -64,7 +64,7 @@ static PassRefPtr<AnimatableValue> createFromLength(const Length& length, const
|
| case Fixed:
|
| case Percent:
|
| case Calculated:
|
| - return AnimatableLength::create(length, style.effectiveZoom());
|
| + return AnimatableLength::create(length);
|
| case Auto:
|
| case Intrinsic:
|
| case MinIntrinsic:
|
| @@ -72,7 +72,7 @@ static PassRefPtr<AnimatableValue> createFromLength(const Length& length, const
|
| case MaxContent:
|
| case FillAvailable:
|
| case FitContent:
|
| - return AnimatableUnknown::create(CSSPrimitiveValue::create(length, 1));
|
| + return AnimatableUnknown::create(CSSPrimitiveValue::create(length));
|
| case MaxSizeNone:
|
| return AnimatableUnknown::create(CSSValueNone);
|
| case ExtendToZoom: // Does not apply to elements.
|
|
|