summaryrefslogtreecommitdiff
path: root/tests/general/bug-174.xsl
blob: 51991ef5439d3dcee579ab0ac78b311b49aa62d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<xsl:stylesheet
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:func = "http://exslt.org/functions"
	version="1.0" extension-element-prefixes="func">

<func:function name="func:uaf">
	<func:result/>
	<func:result/>
</func:function>

<xsl:template match="/">
        <result>
	        <xsl:value-of select="func:uaf()"/>
        </result>
</xsl:template>

</xsl:stylesheet>