This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 22402 - Holes appear when a group reverses an inner animation that has same iterationDuration.
Summary: Holes appear when a group reverses an inner animation that has same iteration...
Status: NEW
Alias: None
Product: FXTF
Classification: Unclassified
Component: Web Animations (show other bugs)
Version: unspecified
Hardware: PC Linux
: P2 normal
Target Milestone: ---
Assignee: FXTF Web Animation bugs
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-06-19 07:09 UTC by Tim 'mithro' Ansell
Modified: 2013-06-19 07:09 UTC (History)
0 users

See Also:


Attachments

Description Tim 'mithro' Ansell 2013-06-19 07:09:04 UTC
Test which produces these discontinuities are; 

var anim = new Animation(
    document.getElementById("b"), {left: ["100px", "500px"]},
    {iterationCount: 2, iterationDuration: 1.0});
var parGroup = new ParGroup([anim],
    {direction: "alternate", iterationDuration: 1.0, iterationCount: Infinity});

At t=1.0 (and t=2.0, 3.0, etc), the value of left will end up at 100px rather than the preferred 500px.