From b7f42663b677b7076329a0e22d17525c842a0034 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Mon, 20 Jun 2005 13:22:50 +0000 Subject: [PATCH] Warning about collapsing border model. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198754 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/fop/fo/flow/Table.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/java/org/apache/fop/fo/flow/Table.java b/src/java/org/apache/fop/fo/flow/Table.java index f1fee2a3c..8ebe076e7 100644 --- a/src/java/org/apache/fop/fo/flow/Table.java +++ b/src/java/org/apache/fop/fo/flow/Table.java @@ -136,6 +136,10 @@ public class Table extends FObj { //See "17.6.2 The collapsing border model" in CSS2 getLogger().error("Table may not have padding when using the collapsing border model."); } + if (borderCollapse != EN_SEPARATE) { + getLogger().warn("The collapsing border model on an fo:table " + + "is currently not supported by FOP"); + } } /** -- 2.39.5