blob: 28bf481f627ef98837b6cbe41e6c03e44ddb3612 [file] [log] [blame]
<html>
<head>
<style>
::-webkit-scrollbar {
height: 30px;
width: 30px;
}
::-webkit-scrollbar-thumb {
background-color: blue;
height: 30px;
width: 30px;
}
body {
background-color: black;
}
</style>
<script src="../../resources/run-after-display.js"></script>
<script>
function test()
{
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsTextWithPixelResults();
}
runAfterDisplay(function() {
document.body.scrollTop = 2000;
if (window.testRunner) {
testRunner.notifyDone();
}
});
}
</script>
</head>
<body onload="test()">
<div style="height: 2000px; color: white;">PASS if blue scrollbar is at the bottom.</div>
</body>
</head>