Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / resize-child-within-overflow-expected.html
blob708e9ec227ac4ec16c2b1cc356b6f196838e3c44
1 <!DOCTYPE html>
2 <style>
3 body {
4 margin: 0;
6 .container {
7 position: absolute;
8 height: 1000px;
9 background-color: blue;
11 #child {
12 width: 600px;
14 .overflow {
15 width: 800px;
16 height: 50px;
18 </style>
19 <div class="container">
20 <div id="child">
21 <div class="overflow"></div>
22 </div>
23 </div>