diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2006-06-08 10:09:15 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2006-06-08 10:09:15 +0000 |
commit | 18339cc4341fb12e5988b531047c9a2259784003 (patch) | |
tree | 31ee80a2e9c624f4cc5d753089384eead62e77f1 /test/fotree/testcases | |
parent | 5ff1b803b56f09d4865704b16b7e58aff995077c (diff) | |
download | xmlgraphics-fop-18339cc4341fb12e5988b531047c9a2259784003.tar.gz xmlgraphics-fop-18339cc4341fb12e5988b531047c9a2259784003.zip |
Bugfix: components of border-separation weren't set when using shorthand-mode, leading to an NPE being thrown (Bugzilla 39712)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@412714 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/fotree/testcases')
-rw-r--r-- | test/fotree/testcases/table-border-separation2.fo | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/test/fotree/testcases/table-border-separation2.fo b/test/fotree/testcases/table-border-separation2.fo new file mode 100644 index 000000000..e1f102f48 --- /dev/null +++ b/test/fotree/testcases/table-border-separation2.fo @@ -0,0 +1,67 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright 2005 The Apache Software Foundation + + Licensed 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 $ --> +<!-- This test checks whether the components of the border-separation property + are correctly set when using shorthand-mode --> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" + xmlns:test="http://xmlgraphics.apache.org/fop/test"> + <fo:layout-master-set> + <fo:simple-page-master master-name="normal" page-width="5in" page-height="5in"> + <fo:region-body/> + </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" border-collapse="separate" + border-separation="0.04167in"> + <test:assert property="border-separation.block-progression-direction" + expected="3000mpt" /> + <test:assert property="border-separation.inline-progression-direction" + expected="3000mpt" /> + <fo:table-column column-width="160pt"/> + <fo:table-column column-width="200pt"/> + <fo:table-body> + <fo:table-row> + <fo:table-cell background-color="yellow" border="solid 5pt"> + <fo:block/> + </fo:table-cell> + <fo:table-cell border="solid 5pt"> + <fo:block>cell2</fo:block> + </fo:table-cell> + </fo:table-row> + <fo:table-row empty-cells="show"> + <fo:table-cell background-color="yellow" border="solid 5pt"> + <fo:block/> + </fo:table-cell> + <fo:table-cell border="solid 5pt"> + <fo:block>cell4</fo:block> + </fo:table-cell> + </fo:table-row> + <fo:table-row empty-cells="hide"> + <fo:table-cell background-color="yellow" border="solid 5pt"> + <fo:block/> + </fo:table-cell> + <fo:table-cell border="solid 5pt"> + <fo:block>cell6</fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-body> + </fo:table> + </fo:flow> + </fo:page-sequence> +</fo:root> + |