You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by vh...@apache.org on 2013/11/05 13:18:15 UTC

svn commit: r1538963 - /xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml

Author: vhennebert
Date: Tue Nov  5 12:18:14 2013
New Revision: 1538963

URL: http://svn.apache.org/r1538963
Log:
FOP-2106: Added test case for footnote resetting when the algorithm has to restart page breaking after a too short/long node

Added:
    xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml   (with props)

Added: xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml?rev=1538963&view=auto
==============================================================================
--- xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml (added)
+++ xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml Tue Nov  5 12:18:14 2013
@@ -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>

Propchange: xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xmlgraphics/fop/trunk/test/layoutengine/standard-testcases/footnote_reset.xml
------------------------------------------------------------------------------
    svn:keywords = Revision Id



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org