diff options
author | Simon Steiner <ssteiner@apache.org> | 2020-01-14 12:07:58 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2020-01-14 12:07:58 +0000 |
commit | fcfcda477575b669e9fd544f44c7a8b1458197e1 (patch) | |
tree | 273ac6f3fbafc91012e1b7fbee68eeccea22b846 | |
parent | d3c2f77d295b1f0cb1ba868f46de126fe0f11af1 (diff) | |
download | xmlgraphics-fop-fcfcda477575b669e9fd544f44c7a8b1458197e1.tar.gz xmlgraphics-fop-fcfcda477575b669e9fd544f44c7a8b1458197e1.zip |
FOP-2901: NoSuchElementException on empty table footer
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1872773 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | fop-core/src/main/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java | 18 | ||||
-rw-r--r-- | fop/test/layoutengine/standard-testcases/table_empty_footer.xml | 67 |
2 files changed, 77 insertions, 8 deletions
diff --git a/fop-core/src/main/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java b/fop-core/src/main/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java index 16eba41fa..ad51ba579 100644 --- a/fop-core/src/main/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java +++ b/fop-core/src/main/java/org/apache/fop/layoutmgr/table/TableContentLayoutManager.java @@ -328,13 +328,15 @@ public class TableContentLayoutManager implements PercentBaseContext { * represent the content. In such a case the break is simply disabled by setting * its penalty to infinite. */ - ListIterator elemIter = returnList.listIterator(returnList.size()); - ListElement elem = (ListElement) elemIter.previous(); - if (elem instanceof KnuthGlue) { - BreakElement breakElement = (BreakElement) elemIter.previous(); - breakElement.setPenaltyValue(KnuthElement.INFINITE); - } else { - elemIter.remove(); + if (!returnList.isEmpty()) { + ListIterator elemIter = returnList.listIterator(returnList.size()); + ListElement elem = (ListElement) elemIter.previous(); + if (elem instanceof KnuthGlue) { + BreakElement breakElement = (BreakElement) elemIter.previous(); + breakElement.setPenaltyValue(KnuthElement.INFINITE); + } else { + elemIter.remove(); + } } context.updateKeepWithPreviousPending(keepWithPrevious); context.setBreakBefore(breakBefore); @@ -483,7 +485,7 @@ public class TableContentLayoutManager implements PercentBaseContext { tableLM.repeatAddAreasForSavedTableHeaderTableCellLayoutManagers(); atLeastOnce = true; - if (footerElements != null) { + if (footerElements != null && !footerElements.isEmpty()) { boolean ancestorTreatAsArtifact = layoutContext.treatAsArtifact(); layoutContext.setTreatAsArtifact(treatFooterAsArtifact); //Positions for footers are simply added at the end diff --git a/fop/test/layoutengine/standard-testcases/table_empty_footer.xml b/fop/test/layoutengine/standard-testcases/table_empty_footer.xml new file mode 100644 index 000000000..0c2d101cc --- /dev/null +++ b/fop/test/layoutengine/standard-testcases/table_empty_footer.xml @@ -0,0 +1,67 @@ +<?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 checks basic tables. + </p> + </info> + <cfg> + <strict-validation>false</strict-validation> + </cfg> + <fo> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master master-name="simple" page-height="27.9cm" page-width="21.6cm"> + <fo:region-body /> + </fo:simple-page-master> + </fo:layout-master-set> + + <fo:page-sequence master-reference="simple"> + <fo:flow flow-name="xsl-region-body"> + <fo:block> + <fo:table border-collapse="separate" table-layout="fixed"> + <fo:table-column column-width="2in" column-number="1"/> + <fo:table-header> + <fo:table-row> + <fo:table-cell> + <fo:block>a</fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-header> + <fo:table-body> + <fo:table-row> + <fo:table-cell> + <fo:block>b</fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-body> + <fo:table-footer/> + </fo:table> + + </fo:block> + + </fo:flow> + </fo:page-sequence> +</fo:root> + </fo> + <checks> + <eval expected="a" xpath="//word[1]"/> + </checks> +</testcase> |