HomeSort by relevance Sort by last modified time
    Searched defs:fromStyle (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/page/animation/
CompositeAnimation.cpp 114 RenderStyle* fromStyle = keyframeAnim ? keyframeAnim->unanimatedStyle() : currentStyle;
151 equal = !isActiveTransition || AnimationBase::propertiesEqual(prop, fromStyle, targetStyle);
160 m_transitions.set(prop, ImplicitAnimation::create(const_cast<Animation*>(anim), prop, renderer, this, modifiedCurrentStyle ? modifiedCurrentStyle.get() : fromStyle));
KeyframeAnimation.cpp 65 void KeyframeAnimation::getKeyframeAnimationInterval(const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
82 if (!fromStyle)
90 fromStyle = it->style();
93 if (!fromStyle || !toStyle)
97 if (fromStyle->animations() && fromStyle->animations()->size() > 0) {
99 timingFunction = &(fromStyle->animations()->animation(0)->timingFunction());
132 const RenderStyle* fromStyle = 0;
135 getKeyframeAnimationInterval(fromStyle, toStyle, progress);
138 if (!fromStyle || !toStyle)
    [all...]

Completed in 51 milliseconds