aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2009-10-29 15:13:11 +0000
committerVincent Hennebert <vhennebert@apache.org>2009-10-29 15:13:11 +0000
commita964e7ec2638b4373ef453e341b5cea52a169877 (patch)
tree639d188461e75c6a6aeaa10a9870746d6bc323dc /test
parent24cac3651c6d10e027990e85b6037a3e7cc2c4d6 (diff)
downloadxmlgraphics-fop-a964e7ec2638b4373ef453e341b5cea52a169877.tar.gz
xmlgraphics-fop-a964e7ec2638b4373ef453e341b5cea52a169877.zip
Bugzilla #48082: value of conditional space not always taken into account in the calculation of a table's height
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@830996 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/layoutengine/standard-testcases/table_conditional-space.xml65
1 files changed, 65 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/table_conditional-space.xml b/test/layoutengine/standard-testcases/table_conditional-space.xml
new file mode 100644
index 000000000..8b0b72558
--- /dev/null
+++ b/test/layoutengine/standard-testcases/table_conditional-space.xml
@@ -0,0 +1,65 @@
+<?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>
+ Bugzilla #48082: in some cases the value of a conditional space is not taken into account in
+ the calculation of the table height.
+ </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="120pt" page-width="220pt">
+ <fo:region-body margin="10pt" background-color="#F0F0F0"/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="page" font-size="8pt" line-height="10pt">
+ <fo:flow flow-name="xsl-region-body">
+ <fo:table width="100%" table-layout="fixed" id="surrounding">
+ <fo:table-body>
+ <fo:table-row>
+ <fo:table-cell background-color="blue">
+ <fo:block padding-after="20pt" background-color="yellow">Cell 1 Line 1</fo:block>
+ </fo:table-cell>
+ <fo:table-cell>
+ <fo:block background-color="pink">
+ <fo:block space-after="7pt">Cell 2 Line 1</fo:block>
+ </fo:block>
+ <fo:block background-color="orange">
+ <fo:block>Cell 2 Line 2</fo:block>
+ <fo:block>Cell 2 Line 3</fo:block>
+ </fo:block>
+ </fo:table-cell>
+ </fo:table-row>
+ </fo:table-body>
+ </fo:table>
+ </fo:flow>
+ </fo:page-sequence>
+ </fo:root>
+ </fo>
+ <checks>
+ <eval expected="37000" xpath="//flow/block/@bpd"/>
+ <eval expected="37000" xpath="//flow/block/block[1]/@bpd"/>
+ <eval expected="30000" xpath="//flow/block/block[1]/block/@bpda"/>
+ <eval expected="37000" xpath="//flow/block/block[2]/@bpd"/>
+ <eval expected="17000" xpath="//flow/block/block[2]/block[1]/@bpd"/>
+ <eval expected="20000" xpath="//flow/block/block[2]/block[2]/@bpd"/>
+ </checks>
+</testcase>