
Avoid position:fixed in the refs, so that they don't incorrectly pass if the only thing that's missing is support for repeated fixedpos elements. Additionally, make less assumptions about the page size. Bug: 1121942 Change-Id: Ib620d4ce0f84c6d0f9e24125f568e278eb907c2b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3555686 Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Morten Stenshorne <mstensho@chromium.org> Cr-Commit-Position: refs/heads/main@{#986080}
13 lines
438 B
HTML
13 lines
438 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
if (window.testRunner)
|
|
testRunner.setPrinting();
|
|
</script>
|
|
<style>::-webkit-scrollbar { display: none }</style>
|
|
<div style="position: fixed; top: 0; padding: 2px; overflow: scroll">
|
|
crbug.com/848734: Fixed-position with overflow:scroll should repeat on every page.
|
|
</div>
|
|
<div style="height:10px;"></div>
|
|
<div style="break-before:page; height:10px;"></div>
|
|
<div style="break-before:page; height:10px;"></div>
|