[web-animations] Is changing fill mode a synchronous action?

```js
elem.style.opacity = 1;
let anim = elem.animate({ opacity: 0 }, { duration: 500, fill: "forwards"});
anim.ready.then(() => {
 anim.effect.timing.fill = "none";
 console.log(elem.style.opacity);
});
```
Should it give “1" or “0”? I hope it’s “1”, but giving the sampling nature of keyframe effect, looks like it’s “0”?

Received on Thursday, 12 March 2015 04:15:59 UTC