chromium/third_party/blink/web_tests/printing/fixedpos-in-abspos.html

<!DOCTYPE html>
<script>
  if (window.testRunner)
    testRunner.setPrinting();
</script>
<style>
  body {
    margin: 0;
  }
</style>
<div style="position:absolute; top:100px; left:100px;">
  Only on the first page<br>
  <div style="position:fixed; top:150px; left:100px;">
    On every page
  </div>
</div>
<div style="height:300vh;"></div>