| Index: Source/core/animation/EffectInputTest.cpp
|
| diff --git a/Source/core/animation/EffectInputTest.cpp b/Source/core/animation/EffectInputTest.cpp
|
| index d57c88819af3af954f59e75d70d65aa3e5f749c7..7b4927c7211a448fb20902b1d3388ca86dbfcf94 100644
|
| --- a/Source/core/animation/EffectInputTest.cpp
|
| +++ b/Source/core/animation/EffectInputTest.cpp
|
| @@ -70,7 +70,7 @@ TEST_F(AnimationEffectInputTest, UnsortedOffsets)
|
| jsKeyframes.append(Dictionary(keyframe1, m_isolate));
|
| jsKeyframes.append(Dictionary(keyframe2, m_isolate));
|
|
|
| - RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
|
| + EffectInput::convert(element.get(), jsKeyframes, exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| EXPECT_EQ(InvalidModificationError, exceptionState.code());
|
| }
|
| @@ -119,7 +119,7 @@ TEST_F(AnimationEffectInputTest, OutOfOrderWithNullOffsets)
|
| jsKeyframes.append(Dictionary(keyframe3, m_isolate));
|
| jsKeyframes.append(Dictionary(keyframe4, m_isolate));
|
|
|
| - RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
|
| + EffectInput::convert(element.get(), jsKeyframes, exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| }
|
|
|
| @@ -141,7 +141,7 @@ TEST_F(AnimationEffectInputTest, Invalid)
|
| jsKeyframes.append(Dictionary(keyframe2, m_isolate));
|
| jsKeyframes.append(Dictionary(keyframe3, m_isolate));
|
|
|
| - RefPtrWillBeRawPtr<AnimationEffect> animationEffect ALLOW_UNUSED = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
|
| + EffectInput::convert(element.get(), jsKeyframes, exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| EXPECT_EQ(InvalidModificationError, exceptionState.code());
|
| }
|
|
|