wpt / css / CSS2 / normal-flow / margin-collapse-through-percentage-height-block.html

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

/css/CSS2/normal-flow/margin-collapse-through-percentage-height-block.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/CSS22/box.html#collapsing-margins" title="8.3.1 Collapsing margins">
<link rel="help" href="http://crbug.com/962175">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="A percentage height is unresolvable (i.e. gets treated as auto) if the containing block is auto.">
<p>Test passes if there is a filled green square.</p>
<div style="height:200px;">
  <div style="overflow:hidden; width:100px; background:green;">
    <div style="margin-bottom:100px;"></div>
    <div style="height:30%;"></div>
    <div style="margin-top:100px;"></div>
  </div>
</div>

/css/reference/ref-filled-green-100px-square-only.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mstensho@chromium.org">
<p>Test passes if there is a filled green square.</p>
<div style="width:100px; height:100px; background:green;"></div>