gecko/layout/reftests/bugs/928607-1.html
Robert O'Callahan 3f350d1ef3 Bug 928607. Ensure that nsGfxScrollFrameInner::UpdatePosition clips the overflow area of its children. r=tn
--HG--
extra : rebase_source : 2c8e33393cf73b6760cd26017c58a44d209b8e9b
2013-10-22 14:10:31 +02:00

16 lines
393 B
HTML

<DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div style="overflow:hidden; border:1px solid black;">
<div id="d" style="position:relative; left:10px; height:10px; background:blue;"></div>
</div>
<script>
function doTest() {
d.style.left = "50px";
document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>