Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / 009.html
blob027e1b52297fa7d8814d94988f1c020a972a8f18
1 <html>
2 <head>
3 <style>
4 div.box {
5 height: 100px;
6 width:100px;
7 background-color:green;
8 display: -moz-box;
9 display: -webkit-box;
10 display: box;
11 overflow:auto;
12 -webkit-box-orient: vertical;
13 -moz-box-orient: vertical;
14 border: 2px solid olive;
17 </style>
18 </head>
19 <body>
20 <p>You should see a 100x100 olive-bordered green square below with a vertical scrollbar. The scrollable area should all be green
21 and should be about 1000px tall. If you do not see a scrollbar, then the test has failed.
22 </p>
23 <div class="box"><div style="height:1000px;"></div></div>
24 </body>
25 </html>