| OLD | NEW |
| (Empty) |
| 1 <!-- Based on fast/repaint/fixed-scroll-simple.html --> | |
| 2 <html> | |
| 3 <head> | |
| 4 <link rel="stylesheet" href="../../../fast/repaint/resources/default.css"> | |
| 5 <script src="resources/paint-invalidation-test.js"></script> | |
| 6 <script> | |
| 7 function paintInvalidationTest() | |
| 8 { | |
| 9 window.scrollTo(0, 100); | |
| 10 } | |
| 11 </script> | |
| 12 </head> | |
| 13 <body style="height:2000px;" onload="runPaintInvalidationTest()"> | |
| 14 <!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: Layer f
ixed position logic needs more basic testing --> | |
| 15 <!-- You should see no red on this page. --> | |
| 16 <div style="position: absolute; top: 200px;" class="red"></div> | |
| 17 <div style="position: fixed; top: 100px;" class="green"></div> | |
| 18 </body> | |
| 19 </html> | |
| OLD | NEW |