]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Test for block-progression-dimension and height on table-cell.
authorJeremias Maerki <jeremias@apache.org>
Fri, 4 Feb 2005 17:10:57 +0000 (17:10 +0000)
committerJeremias Maerki <jeremias@apache.org>
Fri, 4 Feb 2005 17:10:57 +0000 (17:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198378 13f79535-47bb-0310-9956-ffa450edef68

test/layoutengine/disabled-testcases.txt
test/layoutengine/testcases/table-cell1.xml [new file with mode: 0644]

index f1e28bb0ba71640cf6669db73d379f167bb77880..9ecfa09ce80805a51be7fcddff588003bcb1ae2b 100644 (file)
@@ -1,3 +1,4 @@
 breaks1.xml
 breaks2.xml
-table-row1.xml
\ No newline at end of file
+table-row1.xml
+table-cell1.xml
\ No newline at end of file
diff --git a/test/layoutengine/testcases/table-cell1.xml b/test/layoutengine/testcases/table-cell1.xml
new file mode 100644 (file)
index 0000000..c821fe6
--- /dev/null
@@ -0,0 +1,168 @@
+<?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$ -->
+<testcase>
+  <info>
+    <p>
+      This test checks tables, especially table-cells. This test: height and block-progression-dimension.
+    </p>
+  </info>
+  <fo>
+    <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg">
+      <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">
+            <fo:table-column column-width="2in"/>
+            <fo:table-column column-width="3in"/>
+            <fo:table-body>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell1</fo:block>
+                </fo:table-cell>
+                <fo:table-cell>
+                  <fo:block>cell2</fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell3</fo:block>
+                </fo:table-cell>
+                <fo:table-cell height="20pt" background-color="yellow">
+                  <fo:block>cell4</fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell5</fo:block>
+                </fo:table-cell>
+                <fo:table-cell block-progression-dimension="20pt" background-color="orange">
+                  <fo:block>cell6</fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell7</fo:block>
+                </fo:table-cell>
+                <fo:table-cell block-progression-dimension.minimum="20pt" block-progression-dimension.optimum="30pt" background-color="yellow">
+                  <fo:block line-height="8pt" font-size="8pt">
+                    <fo:block>cell8a</fo:block>
+                    <fo:block>cell8b</fo:block>
+                    <fo:block>cell8c</fo:block>
+                  </fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell9</fo:block>
+                </fo:table-cell>
+                <fo:table-cell block-progression-dimension.minimum="30pt" background-color="yellow">
+                  <fo:block line-height="8pt" font-size="8pt">
+                    <fo:block>cell10a</fo:block>
+                    <fo:block>cell10b</fo:block>
+                    <fo:block>cell10c</fo:block>
+                  </fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell11</fo:block>
+                </fo:table-cell>
+                <fo:table-cell block-progression-dimension.minimum="10pt" block-progression-dimension.optimum="20pt" background-color="orange">
+                  <fo:block line-height="8pt" font-size="8pt">
+                    <fo:block>cell12a</fo:block>
+                    <fo:block>cell12b</fo:block>
+                    <fo:block>cell12c</fo:block>
+                  </fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell13</fo:block>
+                </fo:table-cell>
+                <fo:table-cell block-progression-dimension.maximum="20pt" background-color="yellow">
+                  <fo:block line-height="8pt" font-size="8pt">
+                    <fo:block>cell14a</fo:block>
+                    <fo:block>cell14b</fo:block>
+                    <fo:block>cell14c</fo:block>
+                  </fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+              <fo:table-row>
+                <fo:table-cell>
+                  <fo:block>cell15</fo:block>
+                </fo:table-cell>
+                <fo:table-cell>
+                  <fo:block>cell16</fo:block>
+                </fo:table-cell>
+              </fo:table-row>
+            </fo:table-body>
+          </fo:table>
+        </fo:flow>
+      </fo:page-sequence>
+    </fo:root>
+  </fo>
+  <checks>
+    <!-- cell 2 -->
+    <eval expected="216000" xpath="//flow/block[1]/block[2]/@ipd"/>
+    <eval expected="14400" xpath="//flow/block[1]/block[2]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[2]/block[1]/@ipd"/>
+    <eval expected="14400" xpath="//flow/block[1]/block[2]/block[1]/@bpd"/>
+
+    <!-- cell 4: height="20pt" -->
+    <eval expected="color=#ffff00,repeat=0,horiz=0,vertical=0" xpath="//flow/block[1]/block[4]/@background"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[4]/@ipd"/>
+    <eval expected="20000" xpath="//flow/block[1]/block[4]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[4]/block[1]/@ipd"/>
+    <eval expected="14400" xpath="//flow/block[1]/block[4]/block[1]/@bpd"/>
+
+    <!-- cell 6: block-progression-dimension="20pt" -->
+    <eval expected="color=#ffa500,repeat=0,horiz=0,vertical=0" xpath="//flow/block[1]/block[6]/@background"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[6]/@ipd"/>
+    <eval expected="20000" xpath="//flow/block[1]/block[6]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[6]/block[1]/@ipd"/>
+    <eval expected="14400" xpath="//flow/block[1]/block[6]/block[1]/@bpd"/>
+
+    <!-- cell 8: content-height is 24pt (3*8pt), min="20pt", opt="30pt" -->
+    <eval expected="216000" xpath="//flow/block[1]/block[8]/@ipd"/>
+    <eval expected="30000" xpath="//flow/block[1]/block[8]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[8]/block[1]/@ipd"/>
+    <eval expected="24000" xpath="//flow/block[1]/block[8]/block[1]/@bpd"/>
+
+    <!-- cell 10: content-height is 24pt (3*8pt), min="30pt" -->
+    <eval expected="216000" xpath="//flow/block[1]/block[10]/@ipd"/>
+    <eval expected="30000" xpath="//flow/block[1]/block[10]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[10]/block[1]/@ipd"/>
+    <eval expected="24000" xpath="//flow/block[1]/block[10]/block[1]/@bpd"/>
+
+    <!-- cell 12: content-height is 24pt (3*8pt), min="10pt", opt="20pt" -->
+    <eval expected="216000" xpath="//flow/block[1]/block[12]/@ipd"/>
+    <eval expected="24000" xpath="//flow/block[1]/block[12]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[12]/block[1]/@ipd"/>
+    <eval expected="24000" xpath="//flow/block[1]/block[12]/block[1]/@bpd"/>
+
+    <!-- cell 14: content-height is 24pt (3*8pt), max="20", contents overflow -->
+    <eval expected="216000" xpath="//flow/block[1]/block[14]/@ipd"/>
+    <eval expected="20000" xpath="//flow/block[1]/block[14]/@bpd"/>
+    <eval expected="216000" xpath="//flow/block[1]/block[14]/block[1]/@ipd"/>
+    <eval expected="24000" xpath="//flow/block[1]/block[14]/block[1]/@bpd"/>
+  </checks>
+</testcase>