wpt / css / css-animations / crashtests / inherit.html

Status: PASS | Duration: 1ms | Subtests: 1/1 | Open test on wpt.live | wpt.fyi

/css/css-animations/crashtests/inherit.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Keyframes with background-color:inherit should not crash</title>
<link rel="help" href="https://crbug.com/40345171">
<style>
@keyframes test {
    to { background-color: inherit; }
}
body {
    animation: test 1s;
}
</style>