mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-17 03:22:14 +03:00
a limitation of xsltGetNamespace() when the insertion point is the document. - tests/docs/Makefile.am tests/general/Makefile.am tests/general/bug-35-* tests/docs/bug-35-*: added a specific regression test for #55723 Daniel
11 lines
217 B
XML
11 lines
217 B
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:a="http://a">
|
|
|
|
<xsl:template match="*">
|
|
<xsl:element name="{name()}"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|