| Index: Source/core/animation/FilterStyleInterpolationTest.cpp
|
| diff --git a/Source/core/animation/FilterStyleInterpolationTest.cpp b/Source/core/animation/FilterStyleInterpolationTest.cpp
|
| index 0b858abd2bdfb97ce65d88f9831ff7019f9655bd..dbe54cdc343e4d8a3b38c609608ec31989a69aa2 100644
|
| --- a/Source/core/animation/FilterStyleInterpolationTest.cpp
|
| +++ b/Source/core/animation/FilterStyleInterpolationTest.cpp
|
| @@ -19,7 +19,7 @@ protected:
|
| ASSERT_TRUE(FilterStyleInterpolation::canCreateFrom(value, value));
|
| OwnPtrWillBeRawPtr<InterpolableValue> interpolableValue = FilterStyleInterpolation::toInterpolableValue(value, functionType);
|
| RefPtrWillBeRawPtr<CSSFunctionValue> result = FilterStyleInterpolation::fromInterpolableValue(*interpolableValue, functionType);
|
| - ASSERT_TRUE(value.equals(*result));
|
| + ASSERT_TRUE(value.equals(result));
|
| }
|
| };
|
|
|
| @@ -28,7 +28,7 @@ TEST_F(AnimationFilterStyleInterpolationTest, ZeroTest)
|
| RefPtrWillBeRawPtr<CSSFunctionValue> filter;
|
| filter = CSSFunctionValue::create(CSSValueBlur);
|
| filter->append(CSSPrimitiveValue::create(0, CSSPrimitiveValue::CSS_PX));
|
| - roundTrip(*filter);
|
| + roundTrip(filter);
|
| }
|
|
|
| TEST_F(AnimationFilterStyleInterpolationTest, SimpleTest)
|
| @@ -37,7 +37,7 @@ TEST_F(AnimationFilterStyleInterpolationTest, SimpleTest)
|
|
|
| filter = CSSFunctionValue::create(CSSValueOpacity);
|
| filter->append(CSSPrimitiveValue::create(0.5, CSSPrimitiveValue::CSS_NUMBER));
|
| - roundTrip(*filter);
|
| + roundTrip(filter);
|
| }
|
|
|
| }
|
|
|