blob: ee5ff5bb818b2eade7be4eccf40f47ec073f9c9a [file] [log] [blame]
<!DOCTYPE html>
<html>
<style>
#container {
position: relative;
top: 412px;
}
#x {
background: green;
width: 100px;
height: 100px;
}
#y {
background: black;
width: 100px;
height: 100px;
}
body {
height: 3000px;
}
</style>
<body>
<div id=container>
You should see a green square box and a black square box.
<div id=x></div>
<div id=y></div>
</div>
</body>
<script>
scrollTo(0, 412);
</script>
</html>