<!DOCTYPE html>
<html>
<body>
<style>
body { height:5000px; overflow:hidden; }
div {
  position:relative;
  top:500px;
  width:300px;
  height:300px;
  background-color:red;
}
</style>
<script>
window.scrollTo(0,500);
</script>
<table>
<tr><td><div></div></td></tr>
</table>
</body>
</html>