haikuwebkit/LayoutTests/scrollbars/async-overflow-custom-scrol...

37 lines
891 B
HTML

<!DOCTYPE html> <!-- webkit-test-runner [ AsyncOverflowScrollingEnabled=true ] -->
<html>
<head>
<style>
.scroller {
width: 400px;
height: 400px;
overflow-y: scroll;
}
.contents {
width: 200%;
height: 200%;
background-color: silver;
}
.scroller::-webkit-scrollbar {
width: 20px;
height: 20px;
}
.scroller::-webkit-scrollbar-thumb {
background-color: green;
}
.scroller::-webkit-scrollbar-corner {
background-color: green;
}
</style>
</head>
<body>
<div class="scroller">
<div class="contents"></div>
</div>
</body>
</html>