blob: 7add31920d779f485b3b585fe48f6830d40a2487 [file] [log] [blame]
<!doctype html>
<style>
::-webkit-scrollbar {
display: none;
}
#scroller {
position: absolute;
width: 400px;
height: 400px;
overflow-y: scroll;
will-change: transform;
}
#container {
transform: translate(0, 0);
}
#rect {
width: 100px;
height: 100px;
background: green;
position: absolute;
z-index: -5;
}
</style>
This test passes if there is a green box.
<div id="scroller">
<div id="container">
<div id="rect"></div>
</div>
<div id="forcescroll" style="height: 1000px;"></div>
</div>