mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* libxslt/xslt.c: fixed a weird namespace bug #141532 * tests/docs/Makefile.am tests/docs/bug-14[89].xml tests/general/Makefile.am tests/docs/bug-14[89]*: added tests to the regression for bug #141532 Daniel
14 lines
354 B
XML
14 lines
354 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:ns1="http://www.example.com/ns1"
|
|
exclude-result-prefixes="ns1"
|
|
version="1.0">
|
|
<foo xmlns="http://www.example.com/ns1"/>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:element name="foo"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|