summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/percentage-heights-015-ref.html
blob: 874bf6da6310e7ae4c5b4f8421350ca61dfb1c5e (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
  <meta charset="utf-8">
  <title>CSS Flexbox Reference: Test the percentage resolution of a child in a flex item that has an indefinite main size</title>
  <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com">
  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
  <link rel="author" title="Mozilla" href="https://www.mozilla.org/">

  <style>
  .container {
    display: inline-block;
    width: 100px;
    vertical-align: top;
  }

  .item {
    height: 200px;
    background: red;
    width: 100px;
  }

  .child {
    background: green
  }

  .tall {
    height: 250px;
  }
  </style>

  <p>You should not see any red (except perhaps as the background of a vertical scrollbar)</p>

  <div class="container">
    <div class="item" style="overflow:hidden">
      <div class="child">
        <div class="tall"></div>
      </div>
    </div>
  </div>

  <div class="container">
    <div class="item" style="overflow:auto">
      <div class="child">
        <div class="tall"></div>
      </div>
    </div>
  </div>

  <div class="container">
    <div class="item" style="overflow:scroll">
      <div class="child">
        <div class="tall"></div>
      </div>
    </div>
  </div>

  <div class="container">
    <div class="item" style="overflow:visible">
      <div class="child" >
        <div class="tall"></div>
      </div>
    </div>
  </div>
</html>