1
0
Fork 0
firefox/testing/web-platform/tests/css/css-page/body-background-slr-print-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
784 B
HTML

<!DOCTYPE html>
<style>
:root {
print-color-adjust: exact;
}
body {
margin: 20px;
background: linear-gradient(lightgray 0%, lightgray 50%, white 50%, white 100%)
}
@page {
size: 800px 600px;
margin: 0;
}
</style>
<p style="writing-mode:horizontal-tb; position:absolute; right:0; top:0; width:200px;">
There should be a bottom-left-aligned blue box on the first page, and a
bottom-left-aligned hotpink box on the second page.
The background of the first page is lightgray, and the background of the
second page is white.
</p>
<div style="width:600px; height:100px; break-inside:avoid; background:blue; margin-top:480px;"></div>
<div style="height:500px"></div>
<div style="width:800px; height:100px; break-inside:avoid; background:hotpink; margin-left:-20px;"></div>