- From: Xidorn Quan via GitHub <sysbot+gh@w3.org>
- Date: Thu, 13 Dec 2018 09:36:15 +0000
- To: public-css-archive@w3.org
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