Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / fixed-position-descendant-paint-offset-indirect-expected.html
blobeb2a4b0a24a27fff6f3632ba30d6ef58c222276b
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 top: 50px;
14 background-color: green;
16 </style>
17 <div id="container">
18 <div id="block"></div>
19 </div>
20 This test passes if the green block stays at the same place after repaint.