Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / repaint-via-layout-offset-expected.html
blob6d416a3f13ab1442b99c87ed0b512c72d804ed29
1 <!DOCTYPE html>
2 <style>
3 #container {
4 position: absolute;
5 z-index: 0;
6 left: 50px;
7 top: 50px;
10 .child {
11 position: absolute;
12 width: 40px;
13 height: 40px;
14 background-color: red;
17 .embiggen {
18 width: 50px;
19 height: 50px;
20 background-color: green;
22 </style>
23 <div style="width:200px; height:200px; background-color: lightblue"></div>
24 <div id="container">
25 <span class="child embiggen"></span>
26 </div>