summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/flexbox-definite-sizes-005-ref.html
blob: fca146671cfb80cd3ae0264a8466be0b9823b3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<meta charset="utf-8">
<title>CSS Test Reference</title>
<link rel="author" href="mailto:dholbert@mozilla.com" title="Daniel Holbert">
<style>
  .outer {
    margin-bottom: 2px;
    height: 60px;
  }
  .inner {
    background: lime;
    height: 100%;
  }
</style>
<p>Test passes if you see four 60px-tall lime rows (with platform-appropriate scrollbars on the last one).</p>

<div class="outer"><div class="inner"></div></div>
<div class="outer"><div class="inner"></div></div>
<div class="outer"><div class="inner"></div></div>
<div class="outer" style="overflow: scroll"><div class="inner"></div></div>