blob: 49230605c1b6fe7870622f20a4e61de39c000029 [file] [log] [blame]
<!DOCTYPE html>
<style>
::-webkit-scrollbar { background-color: green; }
::-webkit-scrollbar-track { background-color: red; }
::-webkit-scrollbar-track:hover { display: none; }
</style>
For manual test, move mouse over the red bar.
The test passes if the bar turns green on mouse over and red on mouse out.
<div style="width: 200px; height: 200px; overflow-y: scroll" id="scroller">
<div style="height: 500px"></div>
</div>
<script src="../../../resources/run-after-layout-and-paint.js"></script>
<script>
if (window.eventSender) {
runAfterLayoutAndPaint(function() {
eventSender.mouseMoveTo(200, 100);
}, true);
}
</script>