blob: a6916dc198b73b5446833b63bdb638970564d312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version='1.0'>
<xsl:variable name="foo" select="'FAILURE'"/>
<xsl:template name="test">
<xsl:param name="foo" select="'FAILURE'"/>
<xsl:value-of select="$foo"/>
</xsl:template>
<xsl:template match="/">
<xsl:variable name="foo" select="'FAILURE'"/>
<xsl:call-template name="test">
<xsl:with-param name="foo" select="'SUCCESS'"/>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>
|