1 <!-- Based on fast/repaint/fixed-scroll-simple.html -->
4 <link rel=
"stylesheet" href=
"../../../fast/repaint/resources/default.css">
5 <script src=
"resources/paint-invalidation-test.js"></script>
8 testRunner
.dumpAsTextWithPixelResults();
10 window
.expectedPaintInvalidationObjects
= [
11 "LayoutBlockFlow (positioned) DIV class='green'",
13 function paintInvalidationTest()
15 window
.scrollTo(0, 100);
19 <body style=
"height:2000px;" onload=
"runPaintInvalidationTest()">
20 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer fixed position logic needs more basic testing -->
21 <!-- You should see no red on this page. -->
22 <div style=
"position: absolute; top: 200px;" class=
"red"></div>
23 <div style=
"position: fixed; top: 100px;" class=
"green"></div>