blob: c82da3ce5cf08eaf91963ed876620d54722ab4af [file] [log] [blame]
<!DOCTYPE HTML>
<!--
This test ensures that the offset from renderer is correctly applied
to reparented overflow controls, even if they are unclipped.
-->
<script>
if (window.internals)
internals.useMockOverlayScrollbars();
</script>
<style>
#scroller {
overflow: scroll;
width: 300px;
height: 300px;
position: relative;
top: 10px;
}
#fixed {
position: absolute;
background: blue;
left: 90px;
width: 10px;
height: 10px;
}
#scrolled {
background: green;
width: 80px;
height: 500px;
}
</style>
<div id='scroller'>
<div id='fixed'></div>
<div id='scrolled'></div>
</div>