diff options
Diffstat (limited to 'testing/web-platform/tests/css/CSS2/pagination/page-break-inside-006.xht')
-rw-r--r-- | testing/web-platform/tests/css/CSS2/pagination/page-break-inside-006.xht | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/CSS2/pagination/page-break-inside-006.xht b/testing/web-platform/tests/css/CSS2/pagination/page-break-inside-006.xht new file mode 100644 index 0000000000..aa67922342 --- /dev/null +++ b/testing/web-platform/tests/css/CSS2/pagination/page-break-inside-006.xht @@ -0,0 +1,45 @@ +<!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-inside: paged media</title> +<link rel="author" title="Tom Clancy" href="mailto:tclancy@revenution.com"/> +<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"/> +<meta name="flags" content="paged" /> +<meta name="assert" content="The 'page-break-inside' property applies to paged media only."/> +<style type="text/css"> + @page {margin: 7%;} + html, body { + height: 100%; + line-height: 1; + font-size: 20px; + } + * { + margin: 0; + padding: 0; + } + div { + height: 100%; + } + #pusher { + height: 100%; + margin-bottom: -2em; + } + #test { + page-break-inside: avoid; + font-weight: bold; + color: blue; + } +</style> +</head> +<body> + <div> + <p id="pusher">On screen, only 'Line C' below this sentence must be hidden until you scroll, but, when paginated, all three lines should appear together on the second page.</p> + <div id="test"> + <p>Line A</p> + <p>Line B</p> + <p>Line C</p> + </div> + </div> +</body> +</html> |