Bug 250129
| 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 | ||
Vitor Roriz
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 | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/103911900>
Vitor Roriz
Actually, this is correct. Syntax allows multi-glyph symbols, and multiple symbols should be separated by individual quotation marks.