gecko/dom/animation
Brian Birtles b784c29a93 Bug 1037316 part 2 - When updating animations, match existing animations one-by-one starting from the beginning of each list; r=dbaron
This patch changes the order in which we look for matches when updating existing
animations. Previously we would iterate through new animations in a forwards
direction but match old animations by going through the list of animations
backwards.

This patch makes us iterate through both lists in a backwards direction. That
means that if we have:

  animation: anim 100s

and later we make it

  animation: anim 100s, anim 100s

Then the new animation will be added to the *start* of the list, i.e. prepended,
and the resulting animation will not restart.
2014-07-23 10:51:12 +09:00
..
test Bug 1037316 part 2 - When updating animations, match existing animations one-by-one starting from the beginning of each list; r=dbaron 2014-07-23 10:51:12 +09:00
AnimationTimeline.cpp Bug 1032573 part 4 - Add AnimationTimeline::ToTimelineTime helper method; r=dbaron 2014-07-16 09:02:30 +09:00
AnimationTimeline.h Bug 1032573 part 4 - Add AnimationTimeline::ToTimelineTime helper method; r=dbaron 2014-07-16 09:02:30 +09:00
moz.build Bug 1041860 - Avoid setting FINAL_LIBRARY to libraries that further use a FINAL_LIBRARY. r=mshal 2014-07-23 08:37:51 +09:00