From ce6deafdfa8baa00e3db9272dcff2ba87f633f0c Mon Sep 17 00:00:00 2001 From: "Andreas L. Delmelle" Date: Sat, 23 Jun 2007 20:31:59 +0000 Subject: [PATCH] Bugzilla 42703: white-space incorrectly handled in retrieved markers git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@550098 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/fop/fo/flow/RetrieveMarker.java | 15 +--- .../marker_inline_white-space.xml | 70 +++++++++++++++++++ 2 files changed, 73 insertions(+), 12 deletions(-) create mode 100644 test/layoutengine/standard-testcases/marker_inline_white-space.xml diff --git a/src/java/org/apache/fop/fo/flow/RetrieveMarker.java b/src/java/org/apache/fop/fo/flow/RetrieveMarker.java index 8665ed810..6cdd359f9 100644 --- a/src/java/org/apache/fop/fo/flow/RetrieveMarker.java +++ b/src/java/org/apache/fop/fo/flow/RetrieveMarker.java @@ -19,26 +19,17 @@ package org.apache.fop.fo.flow; -import java.util.HashMap; import java.util.Iterator; import org.apache.fop.apps.FOPException; import org.apache.fop.fo.FONode; -import org.apache.fop.fo.FOPropertyMapping; import org.apache.fop.fo.FObj; import org.apache.fop.fo.FObjMixed; import org.apache.fop.fo.FOText; import org.apache.fop.fo.PropertyList; -import org.apache.fop.fo.StaticPropertyList; import org.apache.fop.fo.ValidationException; -import org.apache.fop.fo.expr.PropertyException; -import org.apache.fop.fo.properties.Property; -import org.apache.fop.fo.properties.PropertyMaker; -import org.xml.sax.Attributes; import org.xml.sax.Locator; - - /** * The retrieve-marker formatting object. * This will create a layout manager that will retrieve @@ -145,14 +136,14 @@ public class RetrieveMarker extends FObjMixed { } cloneSubtree(child.getChildNodes(), newChild, marker, newPropertyList); - if (newChild instanceof FObjMixed) { - handleWhiteSpaceFor((FObjMixed) newChild); - } } else if (child instanceof FOText) { FOText ft = (FOText) newChild; ft.bind(parentPropertyList); } addChildTo(newChild, (FObj) newParent); + if (newChild instanceof FObjMixed) { + handleWhiteSpaceFor((FObjMixed) newChild); + } } } diff --git a/test/layoutengine/standard-testcases/marker_inline_white-space.xml b/test/layoutengine/standard-testcases/marker_inline_white-space.xml new file mode 100644 index 000000000..286ddc2bf --- /dev/null +++ b/test/layoutengine/standard-testcases/marker_inline_white-space.xml @@ -0,0 +1,70 @@ + + + + + +

+ Test for Bugzilla 42703: incorrect white-space handling during + marker-retrieval. +

+
+ + + + + + + + + + + + + marker1 content: + + + marker1 content: + + + + + + + + + Block with inline element . + + text with the marker + + + + + + + + + + +
-- 2.39.5