blob: bf03cdc986a799ea6b3171a386b581c68dbf1eec [file] [log] [blame]
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<style>
@keyframes crash {
from { border-radius: var(--) }
}
#target {
animation: crash 1s infinite;
}
</style>
<div id="target"></div>
<script>
test(() => {
getComputedStyle(target).borderRadius;
}, 'Do not crash when animating a shorthand with var().');
</script>