diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-12-07 09:01:26 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-12-07 09:01:26 +0000 |
commit | 56d2a1386836557650baa9db7f839dd2f78247d7 (patch) | |
tree | 1f52693f3ba42e8041b9beb365d3dafd4fe141bd /test | |
parent | 9a52e6b513054c6e2c511e41542f9b3137c66083 (diff) | |
download | xmlgraphics-fop-56d2a1386836557650baa9db7f839dd2f78247d7.tar.gz xmlgraphics-fop-56d2a1386836557650baa9db7f839dd2f78247d7.zip |
Bugzilla #37813:
Fixed a bug that occurred if the first block was span="all". A page break was inserted in this situation, the first span was calculated as if it were span="none".
Code added to remove empty span areas. This is a lot easier and cleaner than trying not to instantiate the first span right from the beginning.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@354752 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/standard-testcases/region-body_column-count_bug37813.xml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/region-body_column-count_bug37813.xml b/test/layoutengine/standard-testcases/region-body_column-count_bug37813.xml new file mode 100644 index 000000000..82985e591 --- /dev/null +++ b/test/layoutengine/standard-testcases/region-body_column-count_bug37813.xml @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2005 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. Checks a problem described in Bugzilla #37813. + A page break is performed after the first block which spans. + </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="5in"> + <fo:region-body column-count="3" 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>This line is spanned over all columns.</fo:block> + </fo:block> + <fo:block> + <fo:block>line1</fo:block> + <fo:block>line2</fo:block> + <fo:block>line3</fo:block> + <fo:block>line4</fo:block> + <fo:block>line5</fo:block> + <fo:block>line6</fo:block> + </fo:block> + <fo:block span="all"> + <fo:block>This line is spanned over all columns.</fo:block> + </fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="1" xpath="count(//pageViewport)"/> + <eval expected="14400" xpath="//span[1]/@bpd"/> + <eval expected="28800" xpath="//span[2]/@bpd"/> + <eval expected="14400" xpath="//span[3]/@bpd"/> + </checks> +</testcase> |