mirror of
https://github.com/servo/servo.git
synced 2025-08-10 07:55:33 +01:00
Update CSS tests to revision 31d63cc79bd4c929ed582229e936d7b389f3e6ab
This commit is contained in:
parent
1a81b18b9f
commit
2c9faf5363
91915 changed files with 5979820 additions and 0 deletions
|
@ -0,0 +1,58 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Test: page-break-before avoid</title>
|
||||
<link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact">
|
||||
<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com">
|
||||
<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="assert" content="The 'avoid' value of the 'page-break-before' property prevents a page break before the element when possible">
|
||||
<meta name="flags" content="paged">
|
||||
<style type="text/css">
|
||||
html, body { height: 100%; line-height: 1; font-size: 20px; margin: 0; padding: 0; }
|
||||
.spacer { height: 50%; }
|
||||
.backup { margin-top: -3em; }
|
||||
.start { page-break-before: always; }
|
||||
|
||||
p {
|
||||
margin: 0;
|
||||
color: blue;
|
||||
orphans: 1;
|
||||
widows: 1;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
.avoidBefore {
|
||||
page-break-before: avoid;
|
||||
}
|
||||
.avoidInside {
|
||||
page-break-inside: avoid;
|
||||
widows: 3;
|
||||
orphans: 3;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="spacer">
|
||||
Lines A-L must appear on the 6 pages of this test. The blue text
|
||||
must accurately describe the page numbers.
|
||||
</div><div class="spacer backup"></div>
|
||||
<p>Page 1 Line A</p>
|
||||
<p class="avoidBefore">Page 1 Line B
|
||||
Page 1 Line C
|
||||
Page 2 Line D</p>
|
||||
|
||||
<div class="spacer start"></div><div class="spacer backup"></div>
|
||||
<p>Page 3 Line E
|
||||
Page 3 Line F
|
||||
Page 4 Line G</p>
|
||||
<p class="avoidBefore">Page 4 Line H</p>
|
||||
|
||||
<div class="spacer start">[page 5]</div><div class="spacer backup"></div>
|
||||
<p class="avoidInside">Page 6 Line I
|
||||
Page 6 Line J
|
||||
Page 6 Line K</p>
|
||||
<p class="avoidBefore">Page 6 Line L</p>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue