chromium/third_party/blink/web_tests/fast/scroll-behavior/scroll-into-view-sticky-expected.html

<style>
.sticky {
  position: relative;
  top: 0;
  margin-bottom: 800px;
  height: 100px;
}
</style>
<script>
onload = function() {
  target.scrollIntoView();
}
</script>
<body>
  <div class="sticky" style="background: red;"></div>
  <div class="sticky" style="background: green;" id="target"></div>
</body>
</html>