| Summary: | CounterStyle parses all symbols as a single one | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Vitor Roriz <vitor.roriz> |
| Component: | CSS | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED WONTFIX | ||
| Severity: | Normal | CC: | webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | Other | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Actually, this is correct. Syntax allows multi-glyph symbols, and multiple symbols should be separated by individual quotation marks. |
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 #"; }