-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathcache-miss-002.html
More file actions
32 lines (29 loc) · 1.13 KB
/
cache-miss-002.html
File metadata and controls
32 lines (29 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<link rel="help"
href="https://drafts.csswg.org/css-sizing-4/#stretch-fit-sizing">
<link rel="help" href="https://crbug.com/386052671">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Height change caused by 2-pass flex layout affects stretched-height descendant.">
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div style="width: 100px; height: 100px; display: flex; flex-direction: column;">
<main style="flex-basis: 0px; flex-grow: 1; width: -webkit-fill-available;">
<div style="height: 100%; position: relative;">
<div style="position: absolute; inset: 0px;">
<div style="height: -webkit-fill-available; background: green; color: green; overflow-y: auto;">
<div>Content</div>
</div>
</div>
</div>
</main>
</div>