Home | History | Annotate | Download | only in dom

Lines Matching defs:activeAnimations

338 ActiveAnimations* Element::activeAnimations() const
341 return elementRareData()->activeAnimations();
345 ActiveAnimations& Element::ensureActiveAnimations()
348 if (!rareData.activeAnimations())
349 rareData.setActiveAnimations(adoptPtrWillBeNoop(new ActiveAnimations()));
350 return *rareData.activeAnimations();
358 ActiveAnimations* activeAnimations = elementRareData()->activeAnimations();
359 return activeAnimations && !activeAnimations->isEmpty();
1350 if (ActiveAnimations* activeAnimations = elementRareData()->activeAnimations()) {
1351 activeAnimations->cssAnimations().cancel();
1352 activeAnimations->setAnimationStyleChange(false);
1372 if (ActiveAnimations* activeAnimations = data->activeAnimations()) {
1379 activeAnimations->cancelAnimationOnCompositor();
1381 activeAnimations->cssAnimations().cancel();
1382 activeAnimations->setAnimationStyleChange(false);
1438 if (ActiveAnimations* activeAnimations = this->activeAnimations())
1439 activeAnimations->cssAnimations().setPendingUpdate(nullptr);
1448 if (ActiveAnimations* activeAnimations = this->activeAnimations()) {
1449 activeAnimations->cssAnimations().maybeApplyPendingUpdate(this);
1450 activeAnimations->updateAnimationFlags(*style);
1482 if (ActiveAnimations* activeAnimations = data->activeAnimations())
1483 activeAnimations->setAnimationStyleChange(false);
1616 if (ActiveAnimations* activeAnimations = elementRareData()->activeAnimations())
1617 activeAnimations->setAnimationStyleChange(animationStyleChange);