mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-01 14:06:55 +03:00
* libxslt/xslt.c: applied patch from Mark Vakoc fixing bug with namespace URI on template names. * tests/namespaces/tst9*, tests/namespaces/Makefile.am: added test case for this
12 lines
185 B
XML
12 lines
185 B
XML
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:ns="namespace"
|
|
>
|
|
|
|
<xsl:template name="test"/>
|
|
|
|
<xsl:template name="ns:test"/>
|
|
|
|
</xsl:stylesheet>
|
|
|
|
|