Re: [csswg-drafts] [css-tables-3] Unclear definition of offset-adjusted cell measures (#5407)

> The outer min-content width of a table-cell is max(min-width, min-content width) adjusted by the cell intrinsic offsets. 

Actually, is the adjustment here addition because it's outer?

I.e. does this expand to

```js
let adjusted_min_width = min_width - (is_border_box?(paddinglr+borderlr):paddinglr);
let outer_min_content = max(adjusted_min_width, min_content_width) + paddinglr + borderlr;
```


-- 
GitHub Notification of comment by Manishearth
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/5407#issuecomment-670282303 using your GitHub account


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

Received on Friday, 7 August 2020 02:13:01 UTC