Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>CSS Animations: Crash when using neutral keyframes and a var()-cycle</title>
<style>
#test {
animation: anim 1s;
}
@keyframes anim {
to {
--x: var(--x);
}
}
</style>
<div id="test">PASS if no crash</div>