diff options
author | Jeremias Maerki <jeremias@apache.org> | 2006-05-07 12:21:56 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2006-05-07 12:21:56 +0000 |
commit | ce3ec60e0395a82e39a0fa270606e487ddc54916 (patch) | |
tree | de9f96072fd251ceca7f6dfb49cddb933591805e /test/layoutengine/standard-testcases | |
parent | 7ea9a12465abfa31ac0a07a5535538ca0f04f655 (diff) | |
download | xmlgraphics-fop-ce3ec60e0395a82e39a0fa270606e487ddc54916.tar.gz xmlgraphics-fop-ce3ec60e0395a82e39a0fa270606e487ddc54916.zip |
Bugzilla #39443:
Bugfix: Sections with span="all" lead to overlapping text if spanning multiple pages.
Tables and list produced an illegal value for break class on normal breaks.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@404751 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine/standard-testcases')
-rw-r--r-- | test/layoutengine/standard-testcases/region-body_column-count_span_3.xml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/region-body_column-count_span_3.xml b/test/layoutengine/standard-testcases/region-body_column-count_span_3.xml new file mode 100644 index 000000000..b523a29b7 --- /dev/null +++ b/test/layoutengine/standard-testcases/region-body_column-count_span_3.xml @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2006 The Apache Software Foundation + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<!-- $Id$ --> +<testcase> + <info> + <p> + This test checks multi-column documents. Check that spanned section that are broken over + to multiple pages still respect the span setting. + </p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master master-name="normal" page-width="320pt" page-height="4in" margin="20pt"> + <fo:region-body column-count="2" column-gap="10pt"/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="normal"> + <fo:flow flow-name="xsl-region-body"> + <fo:block span="all"> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + <fo:block space-after="1em">This line is spanned over all columns.</fo:block> + </fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="3" xpath="count(//pageViewport)"/> + + <eval expected="9" xpath="count(//pageViewport[@nr=1]//lineArea)"/> + <eval expected="9" xpath="count(//pageViewport[@nr=2]//lineArea)"/> + <eval expected="2" xpath="count(//pageViewport[@nr=3]//lineArea)"/> + + </checks> +</testcase> |