summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-break/overflowed-abs-pos-with-percentage-height-print.html
blob: bbc1a40ffe728071ee759daa5002baae8d87b1c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1699605">
<link rel="help" href="https://www.w3.org/TR/css-break-3/">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1699605">
<link rel="match" href="overflowed-abs-pos-with-percentage-height-print-ref.html">
<meta name="flags" content="paged">
<style>
@page { size:5in 3in; margin:0.5in; }
div.cell {
  padding: 5px;
  position: relative;
}
div.cell:before {
  position: absolute;
  width: 5px;
  height: calc(100% + 2px);
  content: '';
}
</style>

<div style="height:50vh"></div>

<div class="cell">
  <div style="height:50vh"></div>
</div>