forked from mirrors/gecko-dev
Automatic update from web-platform-tests Move monolithic-overflow-* from css/printing to css/css-page. (#44422) Ideally, css/printing/ should be emptied. Here's a step in that direction. See https://github.com/web-platform-tests/wpt/issues/42937 I also just removed the failure expectations from ChromeTestExpectations, since I couldn't find the reason why they were added in the first place, and besides, all bots seem to be happy. Change-Id: I4af6c637861e6ecbfa18b680deb9e82e0e7876f6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5272546 Reviewed-by: Ian Kilpatrick <ikilpatrick@chromium.org> Commit-Queue: Ian Kilpatrick <ikilpatrick@chromium.org> Cr-Commit-Position: refs/heads/main@{#1257066} Co-authored-by: Morten Stenshorne <mstensho@chromium.org> -- wpt-commits: 0f06b11a0ecd9df6f881ebbe6b0dbc5516794de9 wpt-pr: 44422
22 lines
810 B
HTML
22 lines
810 B
HTML
<!DOCTYPE html>
|
|
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
line-height: 20px;
|
|
}
|
|
</style>
|
|
<div style="position:absolute; top:100vh;">header</div>
|
|
<div style="position:absolute; top:200vh;">header</div>
|
|
<div style="position:absolute; top:300vh;">header</div>
|
|
<div style="position:absolute; bottom:0;">footer</div>
|
|
<div style="position:absolute; bottom:-100vh;">footer</div>
|
|
<div style="position:absolute; bottom:-200vh;">footer</div>
|
|
<div style="width:80%; padding-bottom:5px; background:hotpink;">
|
|
header
|
|
<div style="height:320vh; padding:3px; background:cyan;"></div>
|
|
On the fourth page, right after a cyan box.<br>
|
|
footer
|
|
</div>
|
|
Right after the hotpink box. Still fourth page.<br>
|
|
Each page should have a header and footer.
|