blob: 6914cba30972387b929113817fa56c6bd1384387 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Long scrolling should work properly</title>
<link rel="author" title="Mason Freed" href="mailto:masonfreed@chromium.org">
<style>
.post {
height: 1000px;
width: 300px;
border: 1px solid black;
}
.before {
height: 213px;
border-top: 0;
}
.scroller {
overflow-y: scroll;
width: 500px;
height: 500px;
will-change: transform;
}
::-webkit-scrollbar {
display: none;
}
</style>
<p>The number 7 should be visible in the scrolled window below.</p>
<div id="scroller" class="scroller">
<div style="position: relative;">
<div style="position: relative;">
<div class="post before"></div>
<div class="post">7</div>
</div>
</div>
</div>