| Index: Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| index 6282c8ff6543d5427fbcd5a2b5aff285c1d8a185..ce5e901f6e1670912635c59267c15e5392a66497 100644
|
| --- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| +++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp
|
| @@ -68,14 +68,6 @@ static PassRefPtr<AnimatableValue> createFromLength(const Length& length, const
|
| return AnimatableLength::create(adjustFloatForAbsoluteZoom(length.value(), style), AnimatableLength::UnitTypePixels);
|
| case Percent:
|
| return AnimatableLength::create(length.value(), AnimatableLength::UnitTypePercentage);
|
| - case ViewportPercentageWidth:
|
| - return AnimatableLength::create(length.value(), AnimatableLength::UnitTypeViewportWidth);
|
| - case ViewportPercentageHeight:
|
| - return AnimatableLength::create(length.value(), AnimatableLength::UnitTypeViewportHeight);
|
| - case ViewportPercentageMin:
|
| - return AnimatableLength::create(length.value(), AnimatableLength::UnitTypeViewportMin);
|
| - case ViewportPercentageMax:
|
| - return AnimatableLength::create(length.value(), AnimatableLength::UnitTypeViewportMax);
|
| case Calculated:
|
| return AnimatableLength::create(CSSCalcValue::createExpressionNode(length.calculationValue()->expression(), style.effectiveZoom()));
|
| case Auto:
|
|
|