summaryrefslogtreecommitdiff
path: root/tests/general/bug-19-.xsl
blob: 97a273fbaa5343f0c885480211c5b96ca1a8d21d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<xsl:stylesheet
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:ns2="whatever"
 xmlns:ns="another"
 version="1.0">

<xsl:output method="text"/>

<xsl:template match="ns:root">
  WRONG
</xsl:template>

<xsl:template match="ns2:root">
  RIGHT
</xsl:template>

</xsl:stylesheet>