1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-1-.xsl
Daniel Veillard 9599ea7b74 I'm gonna change my nick to FlyTox at some point ...:
- imports.c transform.c xslt.c xsltInternals.h: fixed a
   strip-spaces problem
 - tests/docs/*.xml tests/general/*.[xsl,out]: added reported
   bugs to testsuite
Daniel
2001-03-07 17:05:56 +00:00

22 lines
443 B
XML

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="foo">
<FOO>
<xsl:apply-templates/>
</FOO>
</xsl:template>
<xsl:template match="bar">
<BAR>
<xsl:value-of select="."/>
</BAR>
</xsl:template>
<xsl:template match="xxx">
<XXX>
<xsl:value-of select="."/>
</XXX>
</xsl:template>
</xsl:stylesheet>