Index: third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
diff --git a/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
index 00d838f31c32a32ece13724355637f82f6d0a52e..c39cd1746b37eeb89413ad3446df08547d62d161 100644 |
--- a/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
+++ b/third_party/WebKit/Source/core/animation/CSSScaleInterpolationType.cpp |
@@ -132,7 +132,7 @@ InterpolationValue CSSScaleInterpolationType::maybeConvertInherit( |
const StyleResolverState& state, |
ConversionCheckers& conversionCheckers) const { |
Scale inheritedScale(state.parentStyle()->scale()); |
- conversionCheckers.append(InheritedScaleChecker::create(inheritedScale)); |
+ conversionCheckers.push_back(InheritedScaleChecker::create(inheritedScale)); |
return InterpolationValue(inheritedScale.createInterpolableValue()); |
} |