Index: Source/core/animation/LengthStyleInterpolation.cpp |
diff --git a/Source/core/animation/LengthStyleInterpolation.cpp b/Source/core/animation/LengthStyleInterpolation.cpp |
index effaf43168f31f34598aba819483a4db8969647f..2c2c5f09f1b8029977a969ac4adccd111adcd49d 100644 |
--- a/Source/core/animation/LengthStyleInterpolation.cpp |
+++ b/Source/core/animation/LengthStyleInterpolation.cpp |
@@ -120,6 +120,11 @@ void LengthStyleInterpolation::apply(StyleResolverState& state) const |
StyleBuilder::applyProperty(m_id, state, fromInterpolableValue(*m_cachedValue.get(), m_range).get()); |
} |
+void LengthStyleInterpolation::apply(StyleResolverState& state, const InterpolableValue& value) const |
+{ |
+ StyleBuilder::applyProperty(m_id, state, fromInterpolableValue(value, m_range).get()); |
+} |
+ |
void LengthStyleInterpolation::trace(Visitor* visitor) |
{ |
StyleInterpolation::trace(visitor); |