blob: 86ba5d1a74bc63e91402ecea1b372504286ca744 [file] [log] [blame]
<!DOCTYPE html>
<style>
::-webkit-scrollbar {
display: none;
}
#container {
overflow: scroll;
width: 400px;
height: 400px;
background-attachment: local;
background-color: blue;
}
#child {
height: 500px;
}
</style>
<div id="container">
<div id="child"></div>
</div>
<script src="../resources/text-based-repaint.js"></script>
<script>
function repaintTest() {
child.style.height = '2000px';
container.scrollTop = 2000;
}
onload = runRepaintAndPixelTest;
</script>