summaryrefslogtreecommitdiffstats
path: root/layout/base/tests/chrome/printpreview_mixed_page_size_002.html
blob: f55efef3e6cdece65d1bc266c0a456f0bd4ab523 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<style>
@page a {
    size: 10in 5in;
}
@page b {
    size: 6in 9in;
}
</style>
<div style="display: flex; position: fixed;">
    <div>static 1</div>
    <div>static 2</div>
</div>
<div style="page: a">block a</div>
<div style="page: b">block b</div>