]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Bugzilla #53005: Fix incorrect treatment of fo:wrapper as %block in fo:footnote
authorGlenn Adams <gadams@apache.org>
Tue, 3 Apr 2012 16:33:30 +0000 (16:33 +0000)
committerGlenn Adams <gadams@apache.org>
Tue, 3 Apr 2012 16:33:30 +0000 (16:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1309024 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FObj.java
src/java/org/apache/fop/fo/flow/Inline.java
status.xml
test/layoutengine/standard-testcases/footnote_bug53005.xml [new file with mode: 0644]

index f1d78acf1525a74ae4a77db76edba0894455cf7f..241a442ab2f59b45c5ae51a0c03835ed1458416d 100644 (file)
@@ -501,7 +501,7 @@ public abstract class FObj extends FONode implements Constants {
      * @param lName local name (i.e., no prefix) of incoming node
      * @return true if a member, false if not
      */
-    boolean isNeutralItem(String nsURI, String lName) {
+    protected boolean isNeutralItem(String nsURI, String lName) {
         return (FO_URI.equals(nsURI)
                 && ("multi-switch".equals(lName)
                         || "multi-properties".equals(lName)
index debf6bbf658568f63cf3b0fb874c65569d3220b8..3a958358056a08400b15010b882cf000bafca76e 100644 (file)
@@ -116,7 +116,8 @@ public class Inline extends InlineLevel {
                 }
             } else if (!isBlockOrInlineItem(nsURI, localName)) {
                 invalidChildError(loc, nsURI, localName);
-            } else if (!canHaveBlockLevelChildren && isBlockItem(nsURI, localName)) {
+            } else if (!canHaveBlockLevelChildren && isBlockItem(nsURI, localName)
+                       && !isNeutralItem(nsURI, localName)) {
                 invalidChildError(loc, getParent().getName(), nsURI, getName(),
                                   "rule.inlineContent");
             } else {
index b3609792843037269793ac6b8d475c390a4663c6..b0ffd018060ce2eb4323cb501a3f5f984fb1a494 100644 (file)
       documents. Example: the fix of marks layering will be such a case when it's done.
     -->
     <release version="FOP Trunk" date="TBD">
+      <action context="Code" dev="GA" type="fix" fixes-bug="53005" due-to="Alberto Simões">
+        Fixed incorrect rejection of fo:wrapper inside fo:inline inside fo:footnote-body.
+      </action>
       <action context="Code" dev="PH,VH" type="add">
         Added support for PDF Object Streams. When accessibility is enabled and PDF version 1.5 
         selected, the structure tree will be stored in object streams in order to reduce the size of 
         the final PDF.
       </action>
-      <action context="Code" dev="VH" type="add" fixes-bug="46962" due-to="Alexios Giotis">
+      <action context="Code" dev="VH" type="fix" fixes-bug="46962" due-to="Alexios Giotis">
         Fixed deadlock in PropertyCache.
       </action>
       <action context="Code" dev="VH" type="add" fixes-bug="51385" due-to="Mehdi Houshmand">
diff --git a/test/layoutengine/standard-testcases/footnote_bug53005.xml b/test/layoutengine/standard-testcases/footnote_bug53005.xml
new file mode 100644 (file)
index 0000000..e8cda06
--- /dev/null
@@ -0,0 +1,55 @@
+<?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>
+      This test verifies that fo:wrapper may appear in fo:inline inside an fo:footnote, for which
+      bug #53005 was reported.
+    </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="5in" page-height="3in">
+          <fo:region-body/>
+        </fo:simple-page-master>
+      </fo:layout-master-set>
+      <fo:page-sequence master-reference="normal">
+        <fo:flow flow-name="xsl-region-body">
+          <fo:block>
+            <fo:footnote>
+              <fo:inline>1</fo:inline>
+              <fo:footnote-body>
+                <fo:block>
+                  <fo:inline>
+                    <fo:wrapper id="foo"/>
+                  </fo:inline>
+                </fo:block>
+              </fo:footnote-body>
+            </fo:footnote>
+          </fo:block>
+        </fo:flow>
+      </fo:page-sequence>
+    </fo:root>
+  </fo>
+  <checks>
+    <eval expected="foo" xpath="//footnote//inline[1]/@prod-id"/>
+  </checks>
+</testcase>