Files
ladybird/Tests/LibWeb/Text/expected/css/insert-rule-quoted-keyframes-invalidation.txt
Andreas Kling e4800b2498 LibWeb: Parse @keyframes name as logical string, not token text
The @keyframes parser was storing the keyframes name via
Token::to_string(), which keeps a string token in its quoted,
serialized form. That meant @keyframes "foo" was stored as
"\"foo\"" while animation-name: "foo" resolved to "foo",
and the two never matched.

Store the unquoted string or identifier value so the @keyframes name
and the animation-name reference compare on the same string.
2026-04-22 20:59:00 +02:00

3 lines
58 B
Plaintext

opacity before keyframes: 1
opacity after keyframes: 0.25