1
0
Fork 0
firefox/testing/web-platform/tests/css/css-page/page-margin-002-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

29 lines
661 B
HTML

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-page-3/#at-page-rule">
<link rel="match" href="page-margin-002-print-ref.html">
<style>
@page {
margin: 10px 20px 30px 40px;
}
:root {
print-color-adjust: exact;
writing-mode: vertical-rl;
}
body {
margin: 0;
}
.fullpager {
width: 100vw;
height: 100vh;
}
</style>
<div class="fullpager" style="background:yellow;">
first page
</div>
<div class="fullpager" style="background:cyan;">
second page
</div>
<div class="fullpager" style="background:pink;">
third page
</div>