1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-11 16:10:45 +03:00
Files
libxslt/tests/general/bug-148.xsl
Daniel Veillard f86a7de1b3 fixed a weird namespace bug #141532 added tests to the regression for bug
* 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
2004-05-16 15:02:15 +00:00

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>