In the code below #a is lightsteelblue instead of red when paused at time 0.
<style>
.anim {
width: 100px;
height: 100px;
background-color: lightsteelblue;
}
</style>
var foo = new Animation(document.querySelector("#a"), {"background-color": ["red", "green"]}, 2);
foo.pause();