Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / fixed-position-descendant-paint-offset-expected.html
blob8378cb59c2b82d86fd390106966485c56226dce2
1 <!DOCTYPE html>
2 <style>
3 #container {
4 position: fixed;
5 top: 200px;
6 left: 100px;
9 #block {
10 position: relative;
11 width: 100px;
12 height: 100px;
13 background-color: green;
15 </style>
16 <div id="container">
17 <div id="block"></div>
18 </div>
19 This test passes if the green block stays at the same place after repaint.