wpt / css / css-multicol / multicol-contained-absolute.html

Status: FAIL | Duration: 20ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-multicol/multicol-contained-absolute.html

<!DOCTYPE html>
<title>CSS Multi-column Layout Test: multicol with contained absolute position</title>
<link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
<link rel="match" href="multicol-contained-absolute-ref.html">
<meta name="assert" content="Absolute position contained in multicol should have correct containing block.">
<div style="columns: 2">
  <div style="position: relative; height: 200px">
    <div style="overflow: hidden">
      <div style="position: absolute; width: 100%; height: 200px; background: green"></div>
    </div>
  </div>
</div>

/css/css-multicol/multicol-contained-absolute-ref.html

<!DOCTYPE html>
<div style="columns: 2">
  <div style="height: 200px; background: green"></div>
</div>