1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-26 01:35:08 +00:00
serenity/Tests/LibWeb/Layout/input/misc/scroll.html
2023-08-07 05:23:31 +02:00

22 lines
No EOL
437 B
HTML

<style>
#scrollbox {
width: 200px;
height: 200px;
overflow: scroll;
border: 1px solid black;
}
#content {
height: 1000px;
}
</style>
<script>
document.addEventListener(
"DOMContentLoaded",
function () {
document.getElementById("scrollbox").scroll(0, 100);
},
false
);
</script>
<div id="scrollbox"><div id="content"></div></div>