Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / 009-horizontal.html
blob6c549f10d7b62556ac572eb005f691151ec8771c
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: horizontal;
13 -moz-box-orient: horizontal;
14 border: 2px solid olive;
16 </style>
17 </head>
18 <body>
19 <p>You should see a 100x100 olive-bordered green square below with a horizontal scrollbar. The scrollable area should all be green
20 and should be about 1000px wide. If you do not see a scrollbar, then the test has failed.
21 </p>
22 <div class="box"><div style="width:1000px;"></div></div>
23 </body>
24 </html>