blob: 8b0b72558af76f791b7ac12cdbe2667f5b33438e [file] [log] [blame]
<?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>