[csswg-drafts] [css-lists] Invalid list-style-type example (#4031)

ewilligers has just created a new issue for https://github.com/w3c/csswg-drafts:

== [css-lists] Invalid list-style-type example ==
The [example](https://drafts.csswg.org/css-lists-3/#propdef-list-style-type) has
`ul { list-style-type: symbols(repeating '○' '●'); }`

However, `repeating` is not a valid CSS Counter Styles Level 3 `symbols-type`:


[`symbols()`](https://drafts.csswg.org/css-counter-styles-3/#funcdef-symbols) `= symbols( <symbols-type>? [ <string> | <image> ]+ );`
[`<symbols-type>`](https://drafts.csswg.org/css-counter-styles-3/#typedef-symbols-type) `= cyclic | numeric | alphabetic | symbolic | fixed;`

The example should use `cyclic` instead.

Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/4031 using your GitHub account

Received on Thursday, 13 June 2019 12:21:23 UTC