aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJeremias Maerki <jeremias@apache.org>2005-12-05 14:05:16 +0000
committerJeremias Maerki <jeremias@apache.org>2005-12-05 14:05:16 +0000
commitd8c4ed8c1be7deaf31bb2b184458599706c3522e (patch)
treee7f17aab12b1e46dec122a1eb6f7fe77133b99f9 /src
parent6c11d32f9f0fadba27ba8ae1a0bb5c4744cb847b (diff)
downloadxmlgraphics-fop-d8c4ed8c1be7deaf31bb2b184458599706c3522e.tar.gz
xmlgraphics-fop-d8c4ed8c1be7deaf31bb2b184458599706c3522e.zip
The border-collapse property on fo:table is now forced to the value "separate" until the collapsing border has been implemented.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@354075 13f79535-47bb-0310-9956-ffa450edef68
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");