Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / overflow / overflow-auto-position-absolute.html
blob4bc6baefafce0f1d66bc661a993269e16ea3894d
1 <html>
2 <head>
3 <style>
4 .outer {
5 position: absolute;
6 top: 16px;
7 bottom: 16px;
8 left: 16px;
9 right: 16px;
10 overflow: auto;
13 .inner {
14 position: absolute;
15 background-color: green;
16 top: 0px;
17 left: 0px;
18 right: 0px;
19 height: 1024px;
21 </style>
22 </head>
24 <body>
25 <div class="outer">
26 <div class="inner">This test passes if there is no horizontal scrollbar.</div>
27 </div>
28 </body>
29 </head>