Home | History | Annotate | Download | only in animation

Lines Matching defs:exceptionState

34     TrackExceptionState exceptionState;
46 static PassRefPtrWillBeRawPtr<Animation> createAnimation(Element* element, Vector<Dictionary> keyframeDictionaryVector, T timingInput, ExceptionState& exceptionState)
48 return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState), timingInput);
50 static PassRefPtrWillBeRawPtr<Animation> createAnimation(Element* element, Vector<Dictionary> keyframeDictionaryVector, ExceptionState& exceptionState)
52 return Animation::create(element, EffectInput::convert(element, keyframeDictionaryVector, exceptionState));
85 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, 0, exceptionState);
112 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, duration, exceptionState);
120 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, exceptionState);
127 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, -2, exceptionState);
148 createAnimation(element.get(), jsKeyframes, 0, exceptionState);
150 EXPECT_TRUE(exceptionState.hadException());
151 EXPECT_EQ(NotSupportedError, exceptionState.code());
168 createAnimation(element.get(), jsKeyframes, 0, exceptionState);
170 EXPECT_TRUE(exceptionState.hadException());
171 EXPECT_EQ(NotSupportedError, exceptionState.code());
188 createAnimation(element.get(), jsKeyframes, 0, exceptionState);
190 EXPECT_TRUE(exceptionState.hadException());
191 EXPECT_EQ(NotSupportedError, exceptionState.code());
208 createAnimation(element.get(), jsKeyframes, 0, exceptionState);
210 EXPECT_TRUE(exceptionState.hadException());
211 EXPECT_EQ(NotSupportedError, exceptionState.code());
229 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, timingInputDictionary, exceptionState);
250 RefPtrWillBeRawPtr<Animation> animationWithDuration = createAnimation(element.get(), jsKeyframes, timingInputDictionaryWithDuration, exceptionState);
267 RefPtrWillBeRawPtr<Animation> animationNoDuration = createAnimation(element.get(), jsKeyframes, timingInputDictionaryNoDuration, exceptionState);
286 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, timingInputDictionary, exceptionState);
328 RefPtrWillBeRawPtr<Animation> animation = createAnimation(element.get(), jsKeyframes, timingInputDictionary, exceptionState);