]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Added default empty String to the border shorthand. Avoids NPE mentioned in Bugzilla...
authorAndreas L. Delmelle <adelmelle@apache.org>
Wed, 15 Feb 2006 13:07:57 +0000 (13:07 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Wed, 15 Feb 2006 13:07:57 +0000 (13:07 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@378003 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/fo/FOPropertyMapping.java

index 0e8a21f80ea79a068e768a4092fe03c568595a9c..afa83e99c9d43b21366674bf842b41d2ebaf0990 100644 (file)
@@ -2623,6 +2623,9 @@ public class FOPropertyMapping implements Constants {
         // background-position
         m  = new ListProperty.Maker(PR_BACKGROUND_POSITION);
         m.setInherited(false);
+        m.addKeyword("left", "0% 50%");
+        m.addKeyword("center", "50% 50%");
+        m.addKeyword("right", "100% 50%");
         m.setDefault("0% 0%");
         m.setDatatypeParser(new BackgroundPositionShorthandParser());
         addPropertyMaker("background-position", m);
@@ -2630,6 +2633,7 @@ public class FOPropertyMapping implements Constants {
         // border
         m  = new ListProperty.Maker(PR_BORDER);
         m.setInherited(false);
+        m.setDefault("");
         m.setDatatypeParser(new GenericShorthandParser());
         addPropertyMaker("border", m);