Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / repaint / clipped-layer-size-change-expected.html
blobbd487876fe665dced855859bf3a15e0ba61450ce
1 <!DOCTYPE html>
3 <html>
4 <head>
5 <style>
6 #container {
7 width: 200px;
8 height: 200px;
9 overflow: hidden;
10 border: 1px solid black;
13 .scroll-content {
14 height: 600px;
17 .inner {
18 position: relative;
19 width: 150px;
20 height: 150px;
21 margin-top: -10px; /* force overlap with the composited element */
22 margin-left: 10px;
23 box-sizing: border-box;
24 border: 40px solid black;
27 .composited {
28 height: 50px;
29 width: 100px;
30 transform: translateZ(0);
32 </style>
33 </head>
34 <body>
36 <div id="container">
37 <div class="scroll-content">
38 <div class="composited"></div>
39 <div class="inner"></div>
40 </div>
41 </div>
42 </body>
43 </html>