| Index: third_party/WebKit/Source/core/animation/EffectInputTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/EffectInputTest.cpp b/third_party/WebKit/Source/core/animation/EffectInputTest.cpp
|
| index 9a3676c60710ac7cac524375e4f8fe48ab7d593b..73a4b97249c81333aab7ec1d956014f43590f36f 100644
|
| --- a/third_party/WebKit/Source/core/animation/EffectInputTest.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/EffectInputTest.cpp
|
| @@ -73,7 +73,7 @@ TEST_F(AnimationEffectInputTest, UnsortedOffsets)
|
|
|
| EffectInput::convert(element.get(), EffectModelOrDictionarySequenceOrDictionary::fromDictionarySequence(jsKeyframes), exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| - EXPECT_EQ(InvalidModificationError, exceptionState.code());
|
| + EXPECT_EQ(V8TypeError, exceptionState.code());
|
| }
|
|
|
| TEST_F(AnimationEffectInputTest, LooslySorted)
|
| @@ -144,7 +144,7 @@ TEST_F(AnimationEffectInputTest, Invalid)
|
|
|
| EffectInput::convert(element.get(), EffectModelOrDictionarySequenceOrDictionary::fromDictionarySequence(jsKeyframes), exceptionState);
|
| EXPECT_TRUE(exceptionState.hadException());
|
| - EXPECT_EQ(InvalidModificationError, exceptionState.code());
|
| + EXPECT_EQ(V8TypeError, exceptionState.code());
|
| }
|
|
|
| } // namespace blink
|
|
|