-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: CurrentCVS
-
Fix Version/s: CurrentCVS
-
Component/s: XalanC
-
Labels:None
-
Environment:Tested on Win32
The testcase :
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:my="http://www.examples.com/my" xmlns:your="http://www.examples.com/my"
exclude-result-prefixes="my your"
version="1.0">
<xsl:template match="/">
<out>
<xsl:copy use-attribute-sets="my:set"/>
</out>
</xsl:template>
<xsl:attribute-set name="my:set">
<xsl:attribute name="att1">
<xsl:value-of select="'A1'"/>
</xsl:attribute>
</xsl:attribute-set>
</xsl:stylesheet>