diff options
author | Vincent Hennebert <vhennebert@apache.org> | 2007-04-20 10:21:19 +0000 |
---|---|---|
committer | Vincent Hennebert <vhennebert@apache.org> | 2007-04-20 10:21:19 +0000 |
commit | 95a8746368ffce3f6362da05400810ce4b35d1d8 (patch) | |
tree | fb6b41ff5ea8aa23b667b7f0fef488d4c36f18fd | |
parent | 47007e04dec707234ad097fa3c9a931f28a0111a (diff) | |
download | xmlgraphics-fop-95a8746368ffce3f6362da05400810ce4b35d1d8.tar.gz xmlgraphics-fop-95a8746368ffce3f6362da05400810ce4b35d1d8.zip |
Time to enable border-collapse="collapse"
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@530727 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/fo/flow/Table.java | 7 | ||||
-rw-r--r-- | status.xml | 3 |
2 files changed, 3 insertions, 7 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Table.java b/src/java/org/apache/fop/fo/flow/Table.java index ed69e3100..2fa46a75e 100644 --- a/src/java/org/apache/fop/fo/flow/Table.java +++ b/src/java/org/apache/fop/fo/flow/Table.java @@ -136,13 +136,6 @@ public class Table extends TableFObj { + " behavior on fo:table. Falling back to \"auto\""); // Anyway, the bpd of a table is not used by the layout code } - if (borderCollapse != EN_SEPARATE) { - //TODO Remove once the collapsing border is at least marginally working. - borderCollapse = EN_SEPARATE; - log.debug("A table has been forced to use the separate border model" - + " (border-collapse=\"separate\") as the collapsing border model" - + " is not implemented, yet."); - } if (tableLayout == EN_AUTO) { attributeWarning("table-layout=\"auto\" is currently not supported by FOP"); } diff --git a/status.xml b/status.xml index 1e281b91d..c39d04e4c 100644 --- a/status.xml +++ b/status.xml @@ -28,6 +28,9 @@ <changes> <release version="FOP Trunk"> + <action context="Code" dev="VH" type="add" importance="high" fixes-bug="36934"> + Add support for the collapsing-border model in tables. + </action> <action context="Code" dev="JB" type="add" importance="high"> Add support for named destinations in PDF. </action> |