chromium/third_party/blink/web_tests/printing/fixed-positioned-but-static-headers-and-footers.html

<!DOCTYPE html>
<script>
  if (window.testRunner)
    testRunner.setPrinting();
</script>
<style>
  body { margin: 8px; }
</style>
<div style="position:fixed;">Should repeat on every page</div>
<div style="height:100px;"></div>
<div style="break-before:page; height:100px;"></div>
<div style="break-before:page; height:100px;"></div>
<div style="position:fixed;">
  FAIL! Should not be seen anywhere, since its off the first page (just as in
  screen media, when a fixed-positioned is positioned below the initial
  containing block (the viewport)).
</div>