blob: bb3d71301fa12e1693fbc4975370942b9b368dc6 [file] [log] [blame]
<!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>