blob: 8a19859c5b0e69e774f9852236e099f3afab2474 [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ AsyncOverflowScrollingEnabled=true ]-->
<html>
<head>
<style>
#scroller {
width: 200px;
height: 200px;
overflow: scroll;
border: 1px solid black;
}
.contents {
height: 200%;
background-image: linear-gradient(to bottom, red, red 50%, green 50%, green);
}
::-webkit-scrollbar {
display: none;
}
</style>
<script>
window.addEventListener('load', () => {
scroller.scrollTop = 200;
}, false);
</script>
</head>
<body>
<div id="scroller">
<div class="contents"></div>
</div>
</body>
</html>