blob: f80cea2baed02ef4ff6fb36df50170986ac818e3 [file] [log] [blame]
<html>
<head>
<link rel="stylesheet" href="resources/default.css">
<script src="resources/repaint.js"></script>
<script>
if (window.testRunner)
testRunner.dumpAsText(true);
function repaintTest()
{
document.getElementById('t').style.position = "fixed";
}
</script>
</head>
<body style="height:2000px;" onload="runRepaintTest()">
<!-- Repaint test for https://bugs.webkit.org/show_bug.cgi?id=64650: RenderLayer fixed position logic needs more basic testing -->
<!-- You should see no red on this page. -->
<div style="top: 200px;" class="red fixed"></div>
<div id="t" style="top: 200px;" class="green absolute"></div>
<script>
window.scrollTo(0, 500);
</script>
</body>
</html>