blob: 7afac4de3b83ca3d8af96c1911acc6fb834b6254 [file] [log] [blame]
<!DOCTYPE html>
<title>Reference for a composited child of a perspective sticky element should work correctly</title>
<style>
.scroller {
overflow-y: scroll;
height: 100px;
}
.marker {
position: relative;
top: 50px;
height: 50px;
width: 50px;
background: green;
}
.padding {
height: 500px;
}
</style>
<script>
window.addEventListener('load', function() {
document.querySelector('.scroller').scrollTop = 50;
});
</script>
<div class="scroller">
<div class="marker"></div>
<div class="padding"></div>
</div>
<div>You should see one green box above. No red should be visible.</div>