
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}
18 lines
672 B
HTML
18 lines
672 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
if (window.testRunner)
|
|
testRunner.setPrinting();
|
|
</script>
|
|
<div style="position: absolute; top: 0; padding: 2px">
|
|
crbug.com/848734: Fixed-position with overflow:scroll should repeat on every page.
|
|
</div>
|
|
<div style="position: absolute; top: 100vh; padding: 2px">
|
|
crbug.com/848734: Fixed-position with overflow:scroll should repeat on every page.
|
|
</div>
|
|
<div style="position: absolute; top: 200vh; padding: 2px">
|
|
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>
|