blob: bb6e47bef7305fe3ee857d27c2de5ec2b6340efe [file] [log] [blame]
<!DOCTYPE html>
<script>
onload = () => {
outerDiv.scrollTop = 300;
innerDiv.scrollTop = 404;
}
</script>
<div style="height: 300px; overflow-y: scroll;" id="outerDiv">
<div style="height: 300px;"></div>
<div style="height: 400px; overflow-y: scroll;" id="innerDiv">
<table>
<tr><td style="height: 800px; width: 300px; background: green"></td></tr>
</table>
</div>
</div>