Index: Source/core/animation/SVGStrokeDasharrayStyleInterpolationTest.cpp |
diff --git a/Source/core/animation/SVGStrokeDasharrayStyleInterpolationTest.cpp b/Source/core/animation/SVGStrokeDasharrayStyleInterpolationTest.cpp |
index c0157a76ec7deef06ba04e0cbde6e10ce1463651..92b3b49a40d03642fee06be59a40367d5f3fa2a8 100644 |
--- a/Source/core/animation/SVGStrokeDasharrayStyleInterpolationTest.cpp |
+++ b/Source/core/animation/SVGStrokeDasharrayStyleInterpolationTest.cpp |
@@ -29,7 +29,7 @@ protected: |
static void testPrimitiveValue(const CSSValue& cssValue, double value, CSSPrimitiveValue::UnitType unitType) |
{ |
EXPECT_TRUE(cssValue.isPrimitiveValue()); |
- const CSSPrimitiveValue& primitiveValue = toCSSPrimitiveValue(cssValue); |
+ const CSSPrimitiveValue primitiveValue = toCSSPrimitiveValue(cssValue); |
EXPECT_EQ(primitiveValue.primitiveType(), unitType); |
EXPECT_EQ(primitiveValue.getDoubleValue(), value); |
@@ -70,7 +70,7 @@ TEST_F(AnimationSVGStrokeDasharrayStyleInterpolationTest, SingleUnit) |
TEST_F(AnimationSVGStrokeDasharrayStyleInterpolationTest, None) |
{ |
- RefPtrWillBeRawPtr<CSSPrimitiveValue> start = CSSPrimitiveValue::createIdentifier(CSSValueNone); |
+ CSSPrimitiveValue start = CSSPrimitiveValue::createIdentifier(CSSValueNone); |
RefPtrWillBeRawPtr<CSSValueList> value = roundTrip(start); |
EXPECT_EQ(value->length(), 1u); |