| Summary: |
!important should be taken in account by @keyframes |
| Product: |
WebKit
|
Reporter: |
Tim Nguyen (:ntim) <ntim> |
| Component: |
Animations | Assignee: |
Nobody <webkit-unassigned> |
| Status: |
RESOLVED
DUPLICATE
|
|
|
| Severity: |
Normal
|
CC: |
dino, graouts, koivisto, simon.fraser, webkit-bug-importer
|
| Priority: |
P2
|
Keywords: |
InRadar |
| Version: |
WebKit Nightly Build | |
|
| Hardware: |
Unspecified | |
|
| OS: |
Unspecified | |
|
| URL: |
data:text/html,<style>@keyframes hello {from {color: red;}to {color: orange;}}::marker {animation: hello 1s infinite;color: green !important;}</style><ul><li>hello</li></ul>
|
| See Also: |
https://bugs.webkit.org/show_bug.cgi?id=210963
|
<style> @keyframes hello { from { color: red; } to { color: orange; } } ::marker { animation: hello 1s infinite; color: green !important; } </style> <ul> <li>hello</li> </ul> --- The marker is green in Firefox & Chrome, animates from red to orange in WebKit.