1
0
Fork 0
firefox/testing/web-platform/tests/css/css-page/page-background-image-print.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

21 lines
506 B
HTML

<!DOCTYPE html>
<title>Test print result of background-image only for printed page</title>
<link rel="help" href="https://drafts.csswg.org/css-page-3/#page-properties">
<link rel="help" href="https://crbug.com/341947679">
<link rel="match" href="page-background-image-print-ref.html">
<style>
:root {
print-color-adjust: exact;
}
@page {
background-image: url("/images/green.png");
margin: 0px;
}
</style>
<p>
Should print on a green background but not display it on screen.
</p>