Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(144)

Side by Side Diff: LayoutTests/web-animations-api/transitions-replay.html

Issue 1030103002: Transitions: Downgrade transition to animation after it has finished (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/core/animation/AnimationPlayer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <div id='element'></div>
5 <style>
6 #element {
7 transition: background 100ms;
8 background: black;
9 }
10 </style>
11 <script>
12 var t = async_test('Replaying a transition after it has finished should not trig ger a new transition');
13
14 t.step(function() {
15 element.offsetTop; // Force recalc
16 element.style.background = "green";
17 element.offsetTop; // Force recalc
18
19 assert_equals(document.timeline.getAnimationPlayers().length, 1);
20 var player = document.timeline.getAnimationPlayers()[0];
21 player.onfinish = function() {
22 requestAnimationFrame(function() {
23 requestAnimationFrame(function() {
24 player.startTime = document.timeline.currentTime - 10;
25 player.onfinish = t.done.bind(t);
26 });
27 });
28 }
29 });
30 </script>
OLDNEW
« no previous file with comments | « no previous file | Source/core/animation/AnimationPlayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698