summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2013-11-05 12:18:14 +0000
committerVincent Hennebert <vhennebert@apache.org>2013-11-05 12:18:14 +0000
commit14c8bbc13de922dbd253d5e18456f3059aed3575 (patch)
tree5c910a4e654851fffb04b3a8b717ffc8e3d9cf8c /test
parenta00a96986a4aa5d2e904431cb35d98cea4e653f7 (diff)
downloadxmlgraphics-fop-14c8bbc13de922dbd253d5e18456f3059aed3575.tar.gz
xmlgraphics-fop-14c8bbc13de922dbd253d5e18456f3059aed3575.zip
FOP-2106: Added test case for footnote resetting when the algorithm has to restart page breaking after a too short/long node
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1538963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/layoutengine/standard-testcases/footnote_reset.xml58
1 files changed, 58 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/footnote_reset.xml b/test/layoutengine/standard-testcases/footnote_reset.xml
new file mode 100644
index 000000000..e9015fef7
--- /dev/null
+++ b/test/layoutengine/standard-testcases/footnote_reset.xml
@@ -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>
+ This test checks that footnote content is properly reset when the algorithm has to restart
+ page breaking after a too short/long node.
+ </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="55pt" page-width="200pt">
+ <fo:region-body/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="page">
+ <fo:flow flow-name="xsl-region-body" font-size="8pt" line-height="10pt">
+ <fo:block>Line 1</fo:block>
+ <fo:block>Line 2</fo:block>
+ <fo:block>Line 3<fo:footnote>
+ <fo:inline>*</fo:inline>
+ <fo:footnote-body>
+ <fo:block>Footnote line 1 of 3</fo:block>
+ <fo:block>Footnote line 2 of 3</fo:block>
+ <fo:block>Footnote line 3 of 3</fo:block>
+ </fo:footnote-body>
+ </fo:footnote></fo:block>
+ <fo:block>Line 4</fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+ </fo:root>
+ </fo>
+ <checks>
+ <eval expected="2" xpath="count(//pageViewport[1]//footnote/block)"/>
+ <eval expected="Footnote line 1 of 3" xpath="//pageViewport[1]//footnote[1]/block[1]//text"/>
+ <eval expected="Footnote line 2 of 3" xpath="//pageViewport[1]//footnote[1]/block[2]//text"/>
+ <eval expected="1" xpath="count(//pageViewport[2]//footnote/block)"/>
+ <eval expected="Footnote line 3 of 3" xpath="//pageViewport[2]//footnote[1]/block[1]//text"/>
+ </checks>
+</testcase>