blob: b4e6fe7563cb3e7ac7233b31a6f8a18ca80bfad1 [file] [log] [blame]
<!DOCTYPE html> <!-- webkit-test-runner [ AsyncOverflowScrollingEnabled=true ] -->
<html>
<head>
<style>
.scroller {
direction: rtl;
width: 300px;
height: 300px;
border: 5px solid black;
padding: 2px;
box-sizing: border-box;
overflow: hidden;
}
.contents {
width: 200%;
height: 200%;
background-color: green;
}
.scrollbar-hider {
position: absolute;
top: 8px;
left: 13px;
width: 16px;
height: 300px;
background-color: gray;
}
</style>
</head>
<body>
<div class="scroller">
<div class="contents"></div>
</div>
<div class="scrollbar-hider"></div>
</body>
</html>