<!DOCTYPE html>
<title>Test if it doesn't crash when keyframes has 'background-color:inherit'</title>
<style>
@keyframes test {
to { background-color: inherit; }
}
body {
animation: test 1s;
}
</style>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
done();
</script>