System.arraycopy(ca, 0, ft.ca, 0, ca.length);
}
}
- prevFOTextThisBlock = null;
- nextFOTextThisBlock = null;
- ancestorBlock = null;
+ ft.prevFOTextThisBlock = null;
+ ft.nextFOTextThisBlock = null;
+ ft.ancestorBlock = null;
return ft;
}
<changes>
<release version="FOP Trunk">
+ <action context="Code" dev="AD" type="fix" fixes-bug="42705">
+ Fixed swallowing PCDATA in text-node children of
+ retrieved markers.
+ </action>
<action context="Code" dev="AD" type="fix" fixes-bug="42703">
Fixed erroneous white-space removal in retrieved markers.
</action>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You 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>
+ Test accompanying bugfix for Bugzilla 42705
+ </p>
+ </info>
+ <fo>
+ <fo:root xmlns:fo='http://www.w3.org/1999/XSL/Format'>
+ <fo:layout-master-set>
+ <fo:simple-page-master master-name='Page' page-height='15.5cm' page-width='20cm' margin='1.0cm' >
+ <fo:region-body margin-top="3cm" background-color='lightyellow'/>
+ <fo:region-before extent='3cm' region-name='RB' background-color='lightseagreen'/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+
+ <fo:page-sequence master-reference='Page' >
+ <fo:static-content flow-name="RB">
+ <fo:block>
+ Marker1 :
+ <fo:retrieve-marker retrieve-class-name="M"/>
+ </fo:block>
+ </fo:static-content>
+ <fo:flow flow-name='xsl-region-body'>
+ <fo:block>Beginning of Page-sequence</fo:block>
+ <fo:block>
+ <fo:marker marker-class-name="M">
+ AAAA <fo:inline font-size="8pt">123456789</fo:inline> - numbers with a lower font-size : Missing first four letter of marker 'AAAA' ????
+ </fo:marker>
+ Text with marker A
+ </fo:block>
+ <fo:block>End of Page-sequence</fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+
+ </fo:root>
+ </fo>
+ <checks>
+ <eval expected="AAAA" xpath="(//regionBefore//text)[2]/word[1]" />
+ </checks>
+</testcase>