Home | History | Annotate | Download | only in animation

Lines Matching defs:exceptionState

32     TrackExceptionState exceptionState;
53 RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
54 EXPECT_FALSE(exceptionState.hadException());
73 RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
74 EXPECT_FALSE(exceptionState.hadException());
96 RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
97 EXPECT_FALSE(exceptionState.hadException());
120 RefPtrWillBeRawPtr<AnimationEffect> animationEffect ALLOW_UNUSED = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
121 EXPECT_TRUE(exceptionState.hadException());
122 EXPECT_EQ(InvalidModificationError, exceptionState.code());