Test case: https://jsfiddle.net/01hjyzt0/
<style>
@keyframes test {
from { background: var(--x); }
to { background: var(--y); }
}
#target {
--x: green;
--y: lime;
animation: test 1s infinite alternate;
}
</style>
<div id="target">This should have a smoothly animated green background</div>
Comment 1 by alancutter@chromium.org
, Sep 16 2016