mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-08 21:42:07 +03:00
* libxslt/transform.c: xsl:element generated superfluous xmlns declarations, closes bug #99905 * tests/docs/Makefile.am tests/docs/bug-101.xml tests/general/Makefile.am tests/general/bug-101.*: added the example in the regression tests for this case Daniel
9 lines
268 B
XML
9 lines
268 B
XML
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:template match="/">
|
|
<xsl:element xmlns="http://baz.xml" name="foo">
|
|
<xsl:element name="bar"/>
|
|
</xsl:element>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|