diff options
author | Simon Pepping <spepping@apache.org> | 2006-10-06 17:37:58 +0000 |
---|---|---|
committer | Simon Pepping <spepping@apache.org> | 2006-10-06 17:37:58 +0000 |
commit | 569693cad7dc3fc27e3b25ec621e9675490464f7 (patch) | |
tree | 1fef6b827ae85615b1db24192c92beb8cea1d64d | |
parent | 9192829e4d872dfcdb949fe4061eb19a9d7ee63d (diff) | |
download | xmlgraphics-fop-569693cad7dc3fc27e3b25ec621e9675490464f7.tar.gz xmlgraphics-fop-569693cad7dc3fc27e3b25ec621e9675490464f7.zip |
This fixes a bug that has crept in page number resolution, viz. the text was not updated, so that the wrong ipd was calculated.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@453700 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/area/inline/UnresolvedPageNumber.java | 3 | ||||
-rw-r--r-- | test/layoutengine/standard-testcases/page-number-citation_basic_2.xml | 52 |
2 files changed, 54 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/area/inline/UnresolvedPageNumber.java b/src/java/org/apache/fop/area/inline/UnresolvedPageNumber.java index f8585e95a..2f83afdda 100644 --- a/src/java/org/apache/fop/area/inline/UnresolvedPageNumber.java +++ b/src/java/org/apache/fop/area/inline/UnresolvedPageNumber.java @@ -103,7 +103,8 @@ public class UnresolvedPageNumber extends TextArea implements Resolvable { } // replace the text removeText(); - addWord(page.getPageNumberString(), 0); + text = page.getPageNumberString(); + addWord(text, 0); // update ipd if (font != null) { updateIPD(font.getWordWidth(text)); diff --git a/test/layoutengine/standard-testcases/page-number-citation_basic_2.xml b/test/layoutengine/standard-testcases/page-number-citation_basic_2.xml new file mode 100644 index 000000000..12e610e6a --- /dev/null +++ b/test/layoutengine/standard-testcases/page-number-citation_basic_2.xml @@ -0,0 +1,52 @@ +<?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 whether the IPD of a forward + fo:page-number-citation is correctly adjusted after resolution. + </p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg"> + <fo:layout-master-set> + <fo:simple-page-master master-name="master1" page-width="5in" page-height="1in"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="master1" white-space-collapse="true" initial-page-number="111"> + <fo:flow flow-name="xsl-region-body"> + <fo:block text-align="justify" id="refbl1">page -<fo:page-number-citation id="second-ref" ref-id="second"/>-</fo:block> + <fo:block text-align="justify" id="refbl2">page -<fo:inline><fo:page-number-citation id="second-ref-inline" ref-id="second"/></fo:inline>-</fo:block> + <fo:block break-before="page" id="second">This block has id="second".</fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <!-- Check the text and width of the text area --> + <eval expected="112" xpath="//pageViewport[@nr=111]/page/regionViewport/regionBody/mainReference/span/flow/block[1]/lineArea/text[2]"/> + <eval expected="20016" xpath="//pageViewport[@nr=111]/page/regionViewport/regionBody/mainReference/span/flow/block[1]/lineArea/text[2]/@ipd"/> + <!-- Check the text and width of the inlineparent area --> + <!-- disabled until this feature is fixed + <eval expected="112" xpath="//pageViewport[@nr=111]/page/regionViewport/regionBody/mainReference/span/flow/block[2]/lineArea/inlineparent"/> + <eval expected="20016" xpath="//pageViewport[@nr=111]/page/regionViewport/regionBody/mainReference/span/flow/block[2]/lineArea/inlineparent/@ipd"/> + --> + </checks> +</testcase> |