blob: 1dc431bd63ee0f48476ddd7489c2e2e9d3014230 [file] [log] [blame]
<!DOCTYPE html>
<style>
.fixed {
position: absolute;
background-color: #aef;
width: 100px;
height: 100px;
top: 220px;
}
</style>
<div style="height: 1000px"></div>
<div class="fixed" style="left: 200px"></div>
<div class="fixed" style="left: 400px; will-change: transform"></div>
<script>
scrollBy(0, 120);
</script>