Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-animations/crashtests/inherit.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>Keyframes with background-color:inherit should not crash</title>
<style>
@keyframes test {
to { background-color: inherit; }
}
body {
animation: test 1s;
}
</style>