summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-sizing/block-fit-content-as-initial.html
blob: 7c9422cb5bc761eb0ccbf39449e227e2f70a48ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<title>CSS Test: Test `fit-content` for block axis behaves the same as the initial value</title>
<link rel="match" href="block-fit-content-as-initial-ref.html">
<link rel="help" href="https://www.w3.org/TR/css-sizing-3/#valdef-width-fit-content-length-percentage">
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
<style>
.parent {
  height: fit-content;
}
.child {
  max-height: 100%;
}
</style>
<body>
  <div class='parent'>
    <img class='child' src='../support/60x60-green.png'>
  </div>
</body>