Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / squash-overflow-hidden-scrolltop-expected.html
blobb0c977319b6599b7910add0a048d59ad2e11709d
1 <!DOCTYPE html>
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;
13 .inner {
14 width: 100%;
15 height: 1000px;
16 background-color: blue;
19 .nextto {
20 position: absolute;
21 top: 20px;
22 left: 20px;
23 width: 100px;
24 height: 100px;
27 .bottom {
28 height: 50%;
29 width: 100%;
30 background-color: green;
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>