diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2011-03-09 20:16:09 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2011-03-09 20:16:09 +0000 |
commit | 038c3f30bac88242d6878ad341c83368d92eed5c (patch) | |
tree | 394aa260a823568f3873f7d039c5011841dac25c /test | |
parent | 19b162b1065255d25eab8a89f36755c52fbd435a (diff) | |
download | xmlgraphics-fop-038c3f30bac88242d6878ad341c83368d92eed5c.tar.gz xmlgraphics-fop-038c3f30bac88242d6878ad341c83368d92eed5c.zip |
Bugzilla #50196: padding-start ignored when table-header/footer is repeated.
Patch submitted by Matthias Reischenbacher
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1079969 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/standard-testcases/table-headings_inline_padding-start.xml | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/table-headings_inline_padding-start.xml b/test/layoutengine/standard-testcases/table-headings_inline_padding-start.xml new file mode 100644 index 000000000..9615dbdb8 --- /dev/null +++ b/test/layoutengine/standard-testcases/table-headings_inline_padding-start.xml @@ -0,0 +1,77 @@ +<?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 #50196: padding-start ignored when a table-header/footer is repeated. + </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="220pt" page-height="120pt" + margin="10pt"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="normal"> + <fo:flow flow-name="xsl-region-body"> + <fo:table table-layout="fixed" width="100%"> + <fo:table-header> + <fo:table-row> + <fo:table-cell border="1pt solid black"> + <fo:block> + <fo:inline id="header" padding-start="10pt">Table header</fo:inline> + </fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-header> + <fo:table-footer> + <fo:table-row> + <fo:table-cell border="1pt solid black"> + <fo:block> + <fo:inline id="footer" padding-start="10pt">Table footer</fo:inline> + </fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-footer> + <fo:table-body> + <fo:table-row> + <fo:table-cell border="1pt solid black"> + <fo:block>Before page break</fo:block> + </fo:table-cell> + </fo:table-row> + <fo:table-row break-before="page"> + <fo:table-cell border="1pt solid black"> + <fo:block>After page break</fo:block> + </fo:table-cell> + </fo:table-row> + </fo:table-body> + </fo:table> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="10000" xpath="//pageViewport[1]//inlineparent[@prod-id='header']/@padding-start"/> + <eval expected="10000" xpath="//pageViewport[1]//inlineparent[@prod-id='footer']/@padding-start"/> + <eval expected="10000" xpath="//pageViewport[2]//inlineparent[@prod-id='header']/@padding-start"/> + <eval expected="10000" xpath="//pageViewport[2]//inlineparent[@prod-id='footer']/@padding-start"/> + </checks> +</testcase> |