wpt / css / css-sizing / stretch / stretch-float-with-sibling.html

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

/css/css-sizing/stretch/stretch-float-with-sibling.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Sizing: stretch on float with tall sibling between floats</title>
<link rel="help" href="https://drafts.csswg.org/css-sizing-4/#stretch-fit-sizing">
<link rel="match" href="stretch-float-with-sibling-ref.html">
<meta name="assert" content="
  A float with width:stretch should resolve to the containing block width
  even when a tall non-float block separates it from a previous float.
">
<style>
.stretch {
    width: -webkit-fill-available;
    width: stretch;
    float: left;
    height: 20px;
    background: green;
}
</style>
<p>Test passes if there are two filled green rectangles of equal width.</p>
<div style="width: 200px">
    <div class="stretch"></div>
    <div style="height: 100px"></div>
    <div class="stretch"></div>
</div>

/css/css-sizing/stretch/stretch-float-with-sibling-ref.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>Reference: two green rectangles separated by a gap</title>
<p>Test passes if there are two filled green rectangles of equal width.</p>
<div style="width: 200px">
    <div style="width: 200px; height: 20px; background: green; float: left"></div>
    <div style="height: 100px"></div>
    <div style="width: 200px; height: 20px; background: green; float: left"></div>
</div>