forced-page-breaks-001

multiple forced page breaks case

WeasyPrint

This browser

Flags
paged
Assertion
When multiple 'page-break-before' and/or 'page-break-after' properties with values of 'always', 'left' or 'right' apply at a margin, only one of them generates page breaks.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3 <head>
 4 <title>CSS Test: multiple forced page breaks case</title>
 5 <link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com">
 6 <link rel="help" href="http://www.w3.org/TR/CSS21/page.html#page-break-props">
 7 <meta name="assert" content="When multiple 'page-break-before' and/or 'page-break-after' properties with values of 'always', 'left' or 'right' apply at a margin, only one of them generates page breaks.">
 8 <meta name="flags" content="paged">
 9 <style type="text/css">
10 	@page :left {
11 		@top-center 
12 		{
13 			content: "[This page intentionally left blank]";
14 		}
15 	}
16 	p {page-break-after: always;}
17 	div {page-break-before: right;}
18 </style>
19 </head>
20 <body>
21 	<p>This test requires three pages. This must be on the first page.</p>
22 	<div>This must be on the third page. There must be a blank page (and only one blank page) before this sentence.</div>
23 </body>
24 </html>