aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/fop/fo/flow/Table.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Table.java b/src/java/org/apache/fop/fo/flow/Table.java
index ee24dfd51..037316f5c 100644
--- a/src/java/org/apache/fop/fo/flow/Table.java
+++ b/src/java/org/apache/fop/fo/flow/Table.java
@@ -129,8 +129,11 @@ public class Table extends TableFObj {
defaultColumn.bind(colPList);
if (borderCollapse != EN_SEPARATE) {
- attributeWarning("The collapsing border model on an fo:table "
- + "is currently not supported by FOP");
+ //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");