summaryrefslogtreecommitdiff
path: root/tests/general/bug-50-.xsl
blob: c7f0dac00e8408579e7d82f1b094d6dd21c31a80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<xsl:stylesheet version="1.0"
              xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
              xmlns="http://www.w3.org/TR/xhtml1/strict"
              xmlns:tst="http://example.org/">

<xsl:template match="tst:doc|doc">
success
<xsl:text>name=</xsl:text>
<xsl:value-of select="name(.)"/>
<xsl:text>
local-name=</xsl:text>
<xsl:value-of select="local-name(.)"/>
</xsl:template>
</xsl:stylesheet>