Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / compositing / squashing / squash-overflow-hidden-scrolltop-expected.html
1 <!DOCTYPE html>
2
3 <style type="text/css" media="screen">
4   .container {
5     display: inline-block;
6     width: 200px; 
7     height: 200px; 
8     overflow: hidden;
9     margin: 10px;
10     border: 1px solid black;
11   }
12   
13   .inner {
14     width: 100%;
15     height: 1000px;
16     background-color: blue;
17   }
18   
19   .nextto {
20     position: absolute;
21     top: 20px;
22     left: 20px;
23     width: 100px;
24     height: 100px;
25   }
26
27   .bottom {
28     height: 50%;
29     width: 100%;
30     background-color: green;
31   }
32 </style>
33 <div class="container" style="position: relative;">
34   <div class="inner" style="position: relative;">
35     <div class="bottom"></div>
36   </div>
37 </div>