Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /web-animations/crashtests/animate-shorthand-var.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Animating a shorthand with var() should not crash</title>
<style>
@keyframes crash {
from { border-radius: var(--) }
}
#target {
animation: crash 1s infinite;
}
</style>
<div id="target"></div>
<script>
getComputedStyle(target).borderRadius;
</script>