blob: b0b389361dd6f0ff3e3d7bd425d06bf9d65d3130 [file] [log] [blame]
<html>
<head>
<title></title>
<link rel="stylesheet" href="resources/default.css"></style>
<script src="resources/repaint.js" type="text/javascript"></script>
<script type="text/javascript">
if (window.testRunner)
testRunner.dumpAsText(true);
function repaintTest()
{
var moveMeElement = document.getElementById('moveMe');
moveMeElement.style.visibility = "visible";
moveMeElement.scrollTop = 100;
moveMeElement.scrollLeft = 150;
}
</script>
</head>
<body style="height:2000px;" onload="runRepaintTest()">
<!-- You should see 1 green rectangle in the output and no red. -->
<div id="moveMe" style="top: 150px; left: 100px; visibility: hidden" class="fixed clipped"><div class="absolute green" style="top: 100px; left: 150px;"></div></div>
<!-- Make sure we are scrolled -->
<div style="top: 0px; left: 0px;" class="absolute red"></div>
<script>
window.scrollTo(1000, 1000);
</script>
</body>
</html>