Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / fixed-under-composited-fixed-scrolled-expected.html
blob836f5db90c8ad93e438e45a0bf5c9973e4dd6789
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 window.scrollTo(0, 400);
5 };
6 </script>
7 <style>
8 body {
9 height: 2000px;
11 #fixed-container {
12 position: fixed;
13 top: 0;
14 left: 0;
15 width: 100%;
16 height: 100%;
17 background-color: green;
18 backface-visibility: hidden;
20 </style>
21 Tests paint invalidation of fixed elements under a composited fixed element after scrolled.
22 Passes if there is only green background.
23 <div id="fixed-container">
24 </div>