mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-17 03:22:14 +03:00
* tests/docs/Makefile.am tests/general/Makefile.am tests/general/bug-49-* tests/docs/bug-49-* tests/general/bug-50-* tests/docs/bug-50-*: added a couple of regression tests for bugs posted on the list Daniel
16 lines
329 B
XML
16 lines
329 B
XML
<?xml version="1.0" ?>
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:variable name="a">
|
|
<xsl:variable name="b" select="'SUCCESS'"/>
|
|
<xsl:value-of select="$b"/>
|
|
</xsl:variable>
|
|
|
|
<xsl:template match="/">
|
|
<xsl:value-of select="$a"/>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|