blob: 37fb864449bb4a7c811059d7821fff1d6e1c8d83 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script>
<style>
body {
margin: 0;
}
#big-black-box {
background-color: black;
background-clip: padding-box;
height: 10000px;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
</style>
<div id="big-black-box"></div>
<script>
runAfterLayoutAndPaint(function() {
window.scrollTo(0, 10000);
}, true);
</script>