Sfoglia il codice sorgente

Bugzilla 42705: Fixed swallowing PCDATA during white-space removal in retrieved markers.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@576095 13f79535-47bb-0310-9956-ffa450edef68
pull/23/head
Andreas L. Delmelle 17 anni fa
parent
commit
8fe42a78ce

+ 3
- 3
src/java/org/apache/fop/fo/FOText.java Vedi File

@@ -158,9 +158,9 @@ public class FOText extends FONode {
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;
}


+ 1
- 0
src/java/org/apache/fop/fo/flow/RetrieveMarker.java Vedi File

@@ -181,6 +181,7 @@ public class RetrieveMarker extends FObjMixed {
}
cloneSubtree(marker.getChildNodes(), this,
marker, propertyList);
handleWhiteSpaceFor(this);
}

/**

+ 4
- 0
status.xml Vedi File

@@ -28,6 +28,10 @@

<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>

+ 58
- 0
test/layoutengine/standard-testcases/marker_text_bug42705.xml Vedi File

@@ -0,0 +1,58 @@
<?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>

Loading…
Annulla
Salva