diff options
author | Andreas L. Delmelle <adelmelle@apache.org> | 2011-02-01 20:20:02 +0000 |
---|---|---|
committer | Andreas L. Delmelle <adelmelle@apache.org> | 2011-02-01 20:20:02 +0000 |
commit | d8261a197b2d8cd10c3f171f2a3ca7e9f04f1302 (patch) | |
tree | 50697e53d839c603592ccdaee6fcbec25e43a35e /src/java/org/apache/fop/fo/PropertyList.java | |
parent | 3c839549f3deefeba13214cf950aee3b5b832523 (diff) | |
download | xmlgraphics-fop-d8261a197b2d8cd10c3f171f2a3ca7e9f04f1302.tar.gz xmlgraphics-fop-d8261a197b2d8cd10c3f171f2a3ca7e9f04f1302.zip |
Bugzilla 48334: Added implementation for xml:base
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1066190 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/fo/PropertyList.java')
-rw-r--r-- | src/java/org/apache/fop/fo/PropertyList.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/java/org/apache/fop/fo/PropertyList.java b/src/java/org/apache/fop/fo/PropertyList.java index 8d5a4311f..a1634e868 100644 --- a/src/java/org/apache/fop/fo/PropertyList.java +++ b/src/java/org/apache/fop/fo/PropertyList.java @@ -312,7 +312,8 @@ public abstract class PropertyList { attributeName = attributes.getQName(i); attributeValue = attributes.getValue(i); if (attributeNS == null || attributeNS.length() == 0 - || "xml:lang".equals(attributeName)) { + || "xml:lang".equals(attributeName) + || "xml:base".equals(attributeName)) { convertAttributeToProperty(attributes, attributeName, attributeValue); } else if (!factory.isNamespaceIgnored(attributeNS)) { ElementMapping mapping = factory.getElementMappingRegistry().getElementMapping( |