|
Web Animations: Introduce ActiveAnimations and AnimationStack
The list of active animations has been moved into a new class,
ActiveAnimations and is now grouped by timeline, element pairs in
AnimationStack. The name 'Stack' relates to the stack of animations
which is formed for each element+property pair when animations are
composited together.
For now there is one AnimationStack formed per Timeline, in future if
inherited timelines are introduced it's likely the AnimationStack will
be inherited from any root timelines. I expect that there will only be
two root timelines, the animation timeline (the 'document timeline'),
and a special timeline for CSS Transitions (due to a different
application level in the style cascade).
A base class, Timeline, will soon be factored out of DocumentTimeline
and a new timeline for CSS Transitions will be introduced.
BUG= 232273
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=154733
Total comments: 18
Total comments: 4
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+213 lines, -53 lines) |
Patch |
 |
A |
Source/core/animation/ActiveAnimations.h
|
View
|
1
2
|
1 chunk |
+55 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/Animation.h
|
View
|
|
2 chunks |
+3 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/Animation.cpp
|
View
|
1
2
3
|
3 chunks |
+19 lines, -9 lines |
0 comments
|
Download
|
 |
A |
Source/core/animation/AnimationStack.h
|
View
|
1
2
|
1 chunk |
+63 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/DocumentTimeline.h
|
View
|
1
2
3
|
2 chunks |
+8 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/Player.h
|
View
|
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/Player.cpp
|
View
|
1
|
1 chunk |
+8 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/TimedItem.h
|
View
|
1
|
4 chunks |
+14 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/TimedItem.cpp
|
View
|
|
1 chunk |
+1 line, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/animation/TimedItemTest.cpp
|
View
|
1
|
1 chunk |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/core.gypi
|
View
|
1
2
3
4
|
2 chunks |
+2 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/core/css/resolver/SharedStyleFinder.cpp
|
View
|
1
2
3
4
5
|
1 chunk |
+0 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/resolver/StyleResolver.h
|
View
|
1
2
3
4
5
|
2 chunks |
+2 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/core/css/resolver/StyleResolver.cpp
|
View
|
1
2
3
4
5
|
4 chunks |
+9 lines, -8 lines |
0 comments
|
Download
|
 |
M |
Source/core/dom/Element.h
|
View
|
1
2
3
4
|
2 chunks |
+3 lines, -4 lines |
0 comments
|
Download
|
 |
M |
Source/core/dom/Element.cpp
|
View
|
1
2
3
4
5
|
2 chunks |
+17 lines, -19 lines |
0 comments
|
Download
|
 |
M |
Source/core/dom/ElementRareData.h
|
View
|
1
2
3
4
|
4 chunks |
+5 lines, -6 lines |
0 comments
|
Download
|
Total messages: 16 (0 generated)
|