blob: 9b98ad03ed41d9520d738463d93856616363c260 [file] [log] [blame]
<html>
<head>
<style>
body {
height: 1000px;
}
#redbox {
background-color: red;
position: absolute;
top: 50px;
left: 50px;
height: 50px;
width: 50px;
}
#greenbox {
background-color: green;
position: absolute;
top: 450px;
left: 50px;
height: 50px;
width: 50px;
}
</style>
<script>
if (window.testRunner) {
testRunner.dumpAsText(true);
testRunner.waitUntilDone();
}
function doTest()
{
if (window.testRunner)
testRunner.displayAndTrackRepaints();
// Scroll red box off screen and scroll green box into same place.
window.scrollTo(0, 400);
if (window.testRunner)
testRunner.notifyDone();
}
window.addEventListener('load', doTest, false);
</script>
</head>
<body>
<div id="redbox"></div>
<div id="greenbox"></div>
</body>
</html>