blob: 548411ab16f6f2622786245d64b6adc0a05ff07b [file] [log] [blame]
<!DOCTYPE html>
<script src="../../paint/invalidation/resources/text-based-repaint.js"></script>
<div style="will-change: transform"></div>
<div style="position: relative; width: 100px; border: 1px solid black">
<div style="width: 50px; height: 2000px; background: green"></div>
</div>
There should be a green rectangle across the entire height of the screen
<script>
function repaintTest() {
window.scrollBy(0, 300);
}
onload = runRepaintAndPixelTest;
</script>