1<xsl:stylesheet
2 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 xmlns:ns2="whatever"
4 xmlns:ns="another"
5 version="1.0">
6
7<xsl:output method="text"/>
8
9<xsl:template match="ns:root">
10  WRONG
11</xsl:template>
12
13<xsl:template match="ns2:root">
14  RIGHT
15</xsl:template>
16
17</xsl:stylesheet>
18