* @return the created span area.
*/
public Span createSpan(boolean spanAll) {
+ if (spanAreas.size() > 0 && getCurrentSpan().getBPD() == 0) {
+ //Remove the current one if it is empty
+ spanAreas.remove(spanAreas.size() - 1);
+ }
RegionViewport rv = parent.getRegionViewport();
int ipdWidth = (int) parent.getIPD()
- rv.getBorderAndPaddingWidthStart() - rv.getBorderAndPaddingWidthEnd();
import org.apache.fop.area.PageViewport;
import org.apache.fop.area.LineArea;
import org.apache.fop.area.Resolvable;
+import org.apache.fop.area.Span;
import org.apache.fop.fo.Constants;
import org.apache.fop.fo.flow.Marker;
+ ", new start position: " + newStartPos);
//Handle page break right here to avoid any side-effects
- handleBreakTrait(EN_PAGE);
+ if (newStartPos > 0) {
+ handleBreakTrait(EN_PAGE);
+ }
pageBreakHandled = true;
//Update so the available BPD is reported correctly
pvProvider.setStartOfNextElementList(currentPageNum,
<changes>
<release version="FOP Trunk">
+ <action context="Code" dev="JM" type="fix" fixes-bug="37813">
+ Bugfix: A span="all" on the first block cause a subsequent page break and the first block
+ didn't span all columns.
+ </action>
<action context="Code" dev="JM" type="fix">
Bugfix: Self-created OutputStreams in PNG Renderer were not properly closed.
</action>
--- /dev/null
+<?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>