You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The computed value of overflow-x/y are "as specified, except with visible/clip computing to auto/hidden (respectively) if one of overflow-x or overflow-y is neither visible nor clip"
Here is a testcase using elements with display: table:
Firefox follows the spec here and output the following for the two last elements:
Table with overflow-x: hidden; overflow-y: visible
overflowX: hidden
overflowY: auto
Table with overflow-x: auto; overflow-y: clip
overflowX: auto
overflowY: hidden
From https://www.w3.org/TR/css-overflow-3/#overflow-properties
Here is a testcase using elements with
display: table
:Firefox follows the spec here and output the following for the two last elements:
Chrome resolves everything to visible instead, see https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/css/resolver/style_adjuster.cc;l=503;drc=c78c35fff237598ae5022a8d3ff5f8ee20b894ce :
For WebKit, I'm getting this:
It would be good to specify an interoperable interpretation for tables.
The text was updated successfully, but these errors were encountered: