summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/aspect-ratio/intrinsic-size-008.html
blob: 7ef0d6262bbcf0705a6bfff6b84139e79169db90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<title>CSS aspect-ratio: min-content size contribution with percentage block size</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-sizing-4/#aspect-ratio">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht" />

<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>

<div id="target" style="width: min-content; height: 200px; background: green;">
  <div style="height: 100%;">
    <div style="height: 100%; aspect-ratio: 1/1;"></div>
  </div>
</div>

<script>
document.body.offsetTop;
document.getElementById('target').style.height = '100px';
</script>