]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-2106: Added test case for footnote resetting when the algorithm has to restart...
authorVincent Hennebert <vhennebert@apache.org>
Tue, 5 Nov 2013 12:18:14 +0000 (12:18 +0000)
committerVincent Hennebert <vhennebert@apache.org>
Tue, 5 Nov 2013 12:18:14 +0000 (12:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1538963 13f79535-47bb-0310-9956-ffa450edef68

test/layoutengine/standard-testcases/footnote_reset.xml [new file with mode: 0644]

diff --git a/test/layoutengine/standard-testcases/footnote_reset.xml b/test/layoutengine/standard-testcases/footnote_reset.xml
new file mode 100644 (file)
index 0000000..e9015fe
--- /dev/null
@@ -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>