mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
c74c28560e
--HG-- extra : rebase_source : 81c1c4269e22ffad98433669ef152002b9d63533
22 lines
291 B
HTML
22 lines
291 B
HTML
<!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>
|