wpt / css / css-tables / table-cell-child-overflow-measure.html

Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-tables/table-cell-child-overflow-measure.html

<!DOCTYPE html>
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1210436">
<link rel="match" href="table-cell-child-overflow-measure-ref.html">
<div style="width: 100px; height: 100px; display: table-cell; background: green;">
  <div style="overflow: auto; height: 100%;">
     <div style="height: 200px;"></div>
  </div>
</div>

/css/css-tables/table-cell-child-overflow-measure-ref.html

<!DOCTYPE html>
<div style="width: 100px; height: 100px; background: green;">
  <div style="overflow: auto; height: 100%;">
     <div style="height: 200px;"></div>
  </div>
</div>