[csswg-drafts] [css-overflow-4] Should `-webkit-line-clamp: none` set `block-ellipsis` to `auto`? (#8408)

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

== [css-overflow-4] Should `-webkit-line-clamp: none` set `block-ellipsis` to `auto`? ==
[`-webkit-line-clamp`](https://drafts.csswg.org/css-overflow-4/#webkit-line-clamp) must *unconditionnaly* set `block-ellipisis` to `auto`. Why is it not set to `none` when `-webkit-line-clamp: none` is specified?

```js
style.blockEllipsis; // ''
style.webkitLineClamp = 'none'
style.blockEllipsis; // 'auto'
// Serializes to empty string because it cannot represent `auto` for `block-ellipsis`
style.webkitLineClamp; // ''
```

I suspect it is an oversight in the edit fixing #3695.

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


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 7 February 2023 07:54:27 UTC