Home | History | Annotate | Download | only in dom

Lines Matching defs:activeAnimations

216             if (ActiveAnimations* activeAnimations = data->activeAnimations())
217 activeAnimations->cssAnimations()->cancel();
386 ActiveAnimations* Element::activeAnimations() const
389 return elementRareData()->activeAnimations();
393 ActiveAnimations* Element::ensureActiveAnimations()
396 if (!elementRareData()->activeAnimations())
397 rareData->setActiveAnimations(adoptPtr(new ActiveAnimations()));
398 return rareData->activeAnimations();
409 ActiveAnimations* activeAnimations = elementRareData()->activeAnimations();
410 return activeAnimations && !activeAnimations->isEmpty();
1378 if (ActiveAnimations* activeAnimations = data->activeAnimations())
1379 activeAnimations->cssAnimations()->cancel();