blob: be80803c98dc44ff6718a68c7bff0d5b47f65867 [file] [log] [blame]
<!doctype HTML>
<div style="width: 200px; height: 10000px; background: lightblue">
<div style="position: relative; width: 100px; height: 100px; background: lightgray; top: 10px"></div>
</div>
<div style="position: absolute; width: 100px; height: 100px; background: lightgray; top: 110px; left: 100px"></div>
<script>
onload = () => {
document.scrollingElement.scrollTop = 10;
};
</script>