mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
41 lines
No EOL
1.4 KiB
HTML
41 lines
No EOL
1.4 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>CSS Test: page-break-before :auto</title>
|
|
<link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/page.html#page-break-props"/>
|
|
<link rel="help" href="http://www.w3.org/TR/css3-page/#pg-br-before-after"/>
|
|
<meta name="flags" content="paged"/>
|
|
<meta name="assert" content="The 'auto' value of the 'page-break-before' property neither forces nor forbids a page break before the box."/>
|
|
<style type="text/css">
|
|
html, body { height: 100%; line-height: 1; font-size: 20px; margin: 0; padding: 0; }
|
|
.spacer { height: 50%; }
|
|
.backup { margin-top: -2em; }
|
|
.start { page-break-before: always; }
|
|
|
|
p {
|
|
margin: 0;
|
|
color: blue;
|
|
orphans: 1;
|
|
widows: 1;
|
|
white-space: pre;
|
|
}
|
|
|
|
.avoidAuto { page-break-before: auto; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="spacer">
|
|
Lines A-F must appear on the 4 pages of this test. The blue text
|
|
must accurately describe the page numbers.
|
|
</div><div class="spacer backup"/>
|
|
<p>Page 1 Line A</p>
|
|
<p class="avoidAuto">Page 1 Line B
|
|
Page 2 Line C</p>
|
|
|
|
<div class="spacer start"/><div class="spacer backup"/>
|
|
<p>Page 3 Line D
|
|
Page 3 Line E</p>
|
|
<p class="avoidAuto">Page 4 Line F</p>
|
|
</body>
|
|
</html> |