-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathblock-aspect-ratio-058.html
More file actions
33 lines (31 loc) · 1.03 KB
/
block-aspect-ratio-058.html
File metadata and controls
33 lines (31 loc) · 1.03 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
33
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="https://www.mozilla.org/">
<link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1918576">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="This test verifies that the outer div's max-height shouldn't establish a percentage basis to resolve the target's height when computing outer div's min-content width.">
<style>
#reference-overlapped-green {
position: absolute;
background-color: green;
width: 100px;
height: 100px;
z-index: -1;
}
.outer {
width: min-content;
max-height: 100px;
background: red;
}
.target {
aspect-ratio: 1/1;
height: 100%;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id="reference-overlapped-green"></div>
<div class="outer">
<div class="target"></div>
</div>