blob: e8925f91e805f2895d5866e4505de34ae691c7e5 [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>
This test checks tables with table-layout="fixed" and when width is set but is less
than the sum of all column widths.
</p>
</info>
<fo>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="normal" page-width="5in" page-height="5in" margin="20pt">
<fo:region-body margin="0pt" background-color="lightgray"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="normal" white-space-collapse="true">
<fo:flow flow-name="xsl-region-body">
<fo:table table-layout="fixed" width="100%" border-collapse="separate"
border="solid 5pt red" border-separation.inline-progression-direction="10pt">
<fo:table-column column-width="90pt"/>
<fo:table-column column-width="90pt"/>
<fo:table-column column-width="90pt"/>
<fo:table-column column-width="60pt"/>
<fo:table-body>
<fo:table-row>
<fo:table-cell border="solid 2.5pt">
<fo:block>cell1</fo:block>
</fo:table-cell>
<fo:table-cell border="solid 2.5pt" background-color="yellow">
<fo:block>cell2</fo:block>
</fo:table-cell>
<fo:table-cell border="solid 2.5pt">
<fo:block>cell3</fo:block>
</fo:table-cell>
<fo:table-cell border="solid 2.5pt" background-color="yellow">
<fo:block>cell4</fo:block>
</fo:table-cell>
</fo:table-row>
<fo:table-row>
<fo:table-cell background-color="orange">
<fo:block>cell5</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>cell6</fo:block>
</fo:table-cell>
<fo:table-cell background-color="orange">
<fo:block>cell7</fo:block>
</fo:table-cell>
<fo:table-cell>
<fo:block>cell8</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:flow>
</fo:page-sequence>
</fo:root>
</fo>
<checks>
<eval expected="340000" xpath="//flow/block[1]/@ipda"/>
<eval expected="330000" xpath="//flow/block[1]/@ipd"/>
<eval expected="80000" xpath="//flow/block[1]/block[1]/@ipda"/>
<eval expected="7500" xpath="//flow/block[1]/block[1]/@left-offset"/>
<eval expected="80000" xpath="//flow/block[1]/block[2]/@ipda"/>
<eval expected="97500" xpath="//flow/block[1]/block[2]/@left-offset"/>
<eval expected="80000" xpath="//flow/block[1]/block[3]/@ipda"/>
<eval expected="187500" xpath="//flow/block[1]/block[3]/@left-offset"/>
<eval expected="50000" xpath="//flow/block[1]/block[4]/@ipda"/>
<eval expected="277500" xpath="//flow/block[1]/block[4]/@left-offset"/>
</checks>
</testcase>