Hi,
Has upgraded xalan-c from version 1.4 to 1.10 and noticed that
default namespace is not shown in the result document, compared to the old
xalan version,
when using the <xsl:element>
Is it a bug or a fix in the new version?
For ex.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<xsl:template match="/">
<xsl:element name="html">
</xsl:element>
</xsl:template>
</xsl:stylesheet>
Gives the output (in version 1.10):
<html></html>
And not the expected one (as in version 1.4):
<html xmlns="http://www.w3.org/1999/xhtml"></html>
Thanks in advance!!