Created attachment 414056 [details] Reduced Test Case The value of animation at time 0 does not match Firefox (or WPT test expectations) for color accumulate composite test. Reduced test case attached. ` target.style[idlName] = 'rgb(128, 128, 128)'; const animation = target.animate({ [idlName]: ['rgb(255, 0, 0)', 'rgb(0, 0, 255)'] }, { duration: 1000, composite: 'accumulate' }); testAnimationSamples(animation, idlName, [{ time: 0, expected: 'rgb(255, 128, 128)' }]); ` This reduction was extracted from http://wpt.live/web-animations/animation-model/animation-types/accumulation-per-property-002.html
<rdar://problem/71631573>
Since we don't support composite operations (bug 189299), I expect instead of accumulating over the base value we are replacing it entirely.
Attached test case show following for all browsers (Chrome Canary 107, Firefox Nightly 106 and Safari Technology Preview 152): PASS The value should be rgb(255, 128, 128) at 0ms The value is rgb(255, 128, 128) at 0ms Is anything else needed here? WPT Live link test still has 20 failures in STP 152, 1 in Firefox Nightly 106 and 12 in Chrome Canary 107.
Yes, since composite operations are now supported, this particular issue seems addressed.