blob: 3e3fb82628a1ab4bab53de8f1874ee5c605883e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<title>Zero height box immediately after a forced page-break</title>
<link rel="author" title="Emily McDonough" href="mailto:emcdonough@mozilla.com"/>
<link rel="match" href="zero-height-page-break-001-print-ref.html"/>
<link rel="help" href="https://www.w3.org/TR/css-break-3/#page-break-values"/>
<meta name="assert" content="Ensures that a zero-height frame after a forced page-break appears on the following page."/>
<!-- This will cause a failure of there is only one page, regardless of matching the ref -->
<meta name="reftest-pages" content="1,2"/>
<body>
<div style="break-after: page; height: 100%">Page 1</div>
<div></div>
</body>
</html>
|