Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<title>CSS Animations: Crash when using neutral keyframes and a var()-cycle</title>
<link rel="help" href="https://crbug.com/433196586">
<style>
#test {
animation: anim 1s;
}
@keyframes anim {
to {
--x: var(--x);
}
}
</style>
<div id="test">PASS if no crash</div>