diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2005-09-15 10:56:23 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2005-09-15 10:56:23 +0000 |
commit | 0c7d267141c06e44d28c0d5d311ebf7277e4f92c (patch) | |
tree | 2f59b016e97b16bc65c6a0ead3b224a9026757b6 /test | |
parent | 68a012ebb768f19e6ac2303e88462522dea0f4a4 (diff) | |
download | xmlgraphics-fop-0c7d267141c06e44d28c0d5d311ebf7277e4f92c.tar.gz xmlgraphics-fop-0c7d267141c06e44d28c0d5d311ebf7277e4f92c.zip |
Slight modification to layout testcase to make initial values for column-number work
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@289200 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/testcases/table-cell_various-combinations.xml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/layoutengine/testcases/table-cell_various-combinations.xml b/test/layoutengine/testcases/table-cell_various-combinations.xml index bfcb32458..4936798e0 100644 --- a/test/layoutengine/testcases/table-cell_various-combinations.xml +++ b/test/layoutengine/testcases/table-cell_various-combinations.xml @@ -33,22 +33,22 @@ <fo:table table-layout="fixed" border-collapse="separate"> <fo:table-column column-width="100%"/> <fo:table-body> - <fo:table-cell starts-row="true"> + <fo:table-cell starts-row="true" ends-row="true"> <fo:block>plain block</fo:block> </fo:table-cell> - <fo:table-cell starts-row="true" border="solid 5pt" background-color="yellow"> + <fo:table-cell starts-row="true" border="solid 5pt" background-color="yellow" ends-row="true"> <fo:block>cell with border</fo:block> </fo:table-cell> - <fo:table-cell starts-row="true" padding="5pt"> + <fo:table-cell starts-row="true" padding="5pt" ends-row="true"> <fo:block background-color="orange">cell with padding</fo:block> </fo:table-cell> - <fo:table-cell starts-row="true" border="solid 5pt" padding="5pt" background-color="yellow"> + <fo:table-cell starts-row="true" border="solid 5pt" padding="5pt" background-color="yellow" ends-row="true"> <fo:block background-color="orange">cell with border and padding</fo:block> </fo:table-cell> - <fo:table-cell starts-row="true" border="solid 5pt" height="30pt" display-align="center"> + <fo:table-cell starts-row="true" border="solid 5pt" height="30pt" display-align="center" ends-row="true"> <fo:block>cell with border and height</fo:block> </fo:table-cell> - <fo:table-cell starts-row="true" padding="5pt" height="30pt" display-align="center" background-color="yellow"> + <fo:table-cell starts-row="true" padding="5pt" height="30pt" display-align="center" background-color="yellow" ends-row="true"> <fo:block background-color="orange">cell with padding and height</fo:block> </fo:table-cell> </fo:table-body> |