gecko/layout/reftests/bugs/872254-1-ref.html
Robert O'Callahan 0cd25518d1 Bug 872254. Clear line/row cursors when overflow areas of lines or table rows change. r=bz
--HG--
extra : rebase_source : 81c1c4269e22ffad98433669ef152002b9d63533
2013-05-30 16:44:37 +12:00

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>