| Index: third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
|
| index 9e435dc9ba0e650944a8dc8ec2bb0a352836985c..9e5054d3a7b4b652d81e9464647c6c08ffc69cc3 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSFontWeightInterpolationType.cpp
|
| @@ -91,7 +91,7 @@ InterpolationValue CSSFontWeightInterpolationType::maybeConvertInherit(
|
| if (!state.parentStyle())
|
| return nullptr;
|
| FontWeight inheritedFontWeight = state.parentStyle()->fontWeight();
|
| - conversionCheckers.append(
|
| + conversionCheckers.push_back(
|
| InheritedFontWeightChecker::create(inheritedFontWeight));
|
| return createFontWeightValue(inheritedFontWeight);
|
| }
|
| @@ -113,7 +113,7 @@ InterpolationValue CSSFontWeightInterpolationType::maybeConvertValue(
|
| case CSSValueBolder:
|
| case CSSValueLighter: {
|
| FontWeight inheritedFontWeight = state.parentStyle()->fontWeight();
|
| - conversionCheckers.append(
|
| + conversionCheckers.push_back(
|
| InheritedFontWeightChecker::create(inheritedFontWeight));
|
| if (keyword == CSSValueBolder)
|
| return createFontWeightValue(
|
|
|