[csswg-drafts] [css-text-decor-3] text-underline-position usage in Default UA Stylesheet doesn't match its syntax (#3441)

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

== [css-text-decor-3] text-underline-position usage in Default UA Stylesheet doesn't match its syntax ==
The syntax of `text-underline-position` is `auto | [ under || [ left | right ] ]` which means `auto` should never be combined with other values.

However, in  Appendix B: Default UA Stylesheet, we have
```css
:root:lang(ja), [lang|=ja],
:root:lang(mn), [lang|=mn],
:root:lang(ko), [lang|=ko] { text-underline-position: auto right; }
:root:lang(zh), [lang|=zh] { text-underline-position: auto left;  }
```
which doesn't match the syntax above.

One of them should be updated.

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

Received on Thursday, 13 December 2018 09:36:16 UTC