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/servo-bug-45008.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<style>
div {
animation: 1s -2s infinite keyframes;
}
@keyframes keyframes {
0% { border-left-color: red; }
}
</style>
<div></div>