blob: 4837d548a9399b333c30d2c68e61fb745088d909 [file] [log] [blame]
<script>
onload = function() {
scroller.scrollTop = 100;
}
</script>
<style>
.composited {
/* Triggers promotion and creates a stacking context */
will-change: transform;
}
#scroller {
background: white;
height: 200px;
overflow: auto;
width: 200px;
}
.sticky {
position: relative;
top: 100px;
height: 50px;
background: green;
}
.spacer {
height: 2000px;
}
</style>
<div id="scroller" class="composited">
<div class="sticky"></div>
<div class="spacer"></div>
</div>