summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/interactive/flexbox_interactive_break-natural.html
blob: 4f69d1582ab951ee3cccd230388756abc405958c (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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<title>flexbox | natural breaks</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#pagination">
<meta name="flags" content="interact paged">
<style>
* {
	widows: 1;
	orphans: 1;
	margin: 0;
	height: 100%;
}
body {
	display: flex;
	flex-direction: column;
}
div {
	height: 75%;
	flex: 0 0  auto;
}
@media print {
	div {
		break-inside: avoid;
	}
	div+div {
		border-top: 1em solid red;
	}
}
</style>

<div>Enter print preview. You should not see red or the word fail on the
	first page.</div>

<div>FAIL</div>