blob: c7ac29f1eaec2654a9ad576140cc89cace7ee33a [file] [log] [blame]
<html>
<head>
<title>Test rubber banding overhang drawing with custom scrollbars</title>
<style>
html {
overflow: scroll;
}
::-webkit-scrollbar {
width: 16px;
height: 16px;
}
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner {
background-color: orange;
}
</style>
</head>
<body>
<div style="height:30px; background-color:black; width:100%"></div>
<div id="info">This test requires DRT.</div>
<script>
if (window.internals) {
document.getElementById('info').style.visibility = "hidden";
internals.settings.setMockScrollbarsEnabled(false);
internals.setScrollViewPosition(document, 50, 50);
}
</script>
</body>
</html>