RESOLVED WONTFIX250129
CounterStyle parses all symbols as a single one
https://bugs.webkit.org/show_bug.cgi?id=250129
Summary CounterStyle parses all symbols as a single one
Vitor Roriz
Reported 2023-01-05 06:38:59 PST
consumeCounterStyleSymbol() parses multiple symbols wrongly. It seems to not consider space as a delimiter, so an entry with multiple symbols will produce a CSS list of a single CSSValue. The following example will produce a list with a single CSSValue whose string is "> 1 3 #", instead of a list with three symbols/ @counter-style fooA { system: cyclic; symbols: "> 1 3 #"; }
Attachments
Radar WebKit Bug Importer
Comment 1 2023-01-05 06:39:12 PST
Vitor Roriz
Comment 2 2023-01-05 06:51:11 PST
Actually, this is correct. Syntax allows multi-glyph symbols, and multiple symbols should be separated by individual quotation marks.
Note You need to log in before you can comment on or make changes to this bug.