summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/009.html
blob: 027e1b52297fa7d8814d94988f1c020a972a8f18 (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
<html>
<head>
<style>
div.box {
  height: 100px;
  width:100px;
  background-color:green;
  display: -moz-box;
  display: -webkit-box;
  display: box;
  overflow:auto;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  border: 2px solid olive;
}

</style>
</head>
<body>
<p>You should see a 100x100 olive-bordered green square below with a vertical scrollbar.  The scrollable area should all be green
and should be about 1000px tall.  If you do not see a scrollbar, then the test has failed.
</p>
<div class="box"><div style="height:1000px;"></div></div>
</body>
</html>