Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / squashing / squash-overflow-hidden-contents-expected.html
bloba5b90bcf32ad882cb1f926e23dafc51b400aad32
1 <!DOCTYPE html>
2 <style type="text/css" media="screen">
3 .container {
4 display: inline-block;
5 width: 200px;
6 height: 200px;
7 overflow: hidden;
8 margin: 10px;
9 border: 1px solid black;
12 .inner {
13 width: 100%;
14 height: 1000px;
15 background-color: blue;
17 </style>
19 <!-- Test repainting when the graphicsLayer offsetFromRenderer changes -->
20 <!-- You should see one green square, and no red -->
21 <div class="container" style="position: relative;">
22 <div class="inner" style="position: relative;">
23 </div>
24 </div>