chromium/third_party/blink/web_tests/fast/scrolling/fixed-position-expected.html

<!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>