| Index: Source/core/animation/ListStyleInterpolationTest.cpp
|
| diff --git a/Source/core/animation/ListStyleInterpolationTest.cpp b/Source/core/animation/ListStyleInterpolationTest.cpp
|
| index f78e306c77a546ef84079e90ac1fe1e760f045f7..88b1eeb6c15a87bf2f336375184bf2e32c6b21f6 100644
|
| --- a/Source/core/animation/ListStyleInterpolationTest.cpp
|
| +++ b/Source/core/animation/ListStyleInterpolationTest.cpp
|
| @@ -64,13 +64,13 @@ protected:
|
| CSSShadowValue& expectedShadow = toCSSShadowValue(expectedList->item(i));
|
| CSSShadowValue& actualShadow = toCSSShadowValue(toCSSValueList(actualList).item(i));
|
|
|
| - EXPECT_EQ(toCSSPrimitiveValue(*expectedShadow.x).getDoubleValue(), toCSSPrimitiveValue(*actualShadow.x).getDoubleValue());
|
| - EXPECT_EQ(toCSSPrimitiveValue(*expectedShadow.y).getDoubleValue(), toCSSPrimitiveValue(*actualShadow.y).getDoubleValue());
|
| - EXPECT_EQ(toCSSPrimitiveValue(*expectedShadow.blur).getDoubleValue(), toCSSPrimitiveValue(*actualShadow.blur).getDoubleValue());
|
| - EXPECT_EQ(toCSSPrimitiveValue(*expectedShadow.spread).getDoubleValue(), toCSSPrimitiveValue(*actualShadow.spread).getDoubleValue());
|
| - EXPECT_EQ(toCSSPrimitiveValue(*expectedShadow.color).getRGBA32Value(), toCSSPrimitiveValue(*actualShadow.color).getRGBA32Value());
|
| + EXPECT_EQ(toCSSPrimitiveValue(expectedShadow.x).getDoubleValue(), toCSSPrimitiveValue(actualShadow.x).getDoubleValue());
|
| + EXPECT_EQ(toCSSPrimitiveValue(expectedShadow.y).getDoubleValue(), toCSSPrimitiveValue(actualShadow.y).getDoubleValue());
|
| + EXPECT_EQ(toCSSPrimitiveValue(expectedShadow.blur).getDoubleValue(), toCSSPrimitiveValue(actualShadow.blur).getDoubleValue());
|
| + EXPECT_EQ(toCSSPrimitiveValue(expectedShadow.spread).getDoubleValue(), toCSSPrimitiveValue(actualShadow.spread).getDoubleValue());
|
| + EXPECT_EQ(toCSSPrimitiveValue(expectedShadow.color).getRGBA32Value(), toCSSPrimitiveValue(actualShadow.color).getRGBA32Value());
|
|
|
| - EXPECT_EQ(toCSSPrimitiveValue(*expectedShadow.style).getValueID(), toCSSPrimitiveValue(*actualShadow.style).getValueID());
|
| + EXPECT_EQ(toCSSPrimitiveValue(expectedShadow.style).getValueID(), toCSSPrimitiveValue(actualShadow.style).getValueID());
|
| }
|
| }
|
| };
|
|
|