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

<xsl:template match="@b:*"/>

<xsl:template match="*">
 <xsl:copy>
   <xsl:apply-templates select="*|@*"/>
 </xsl:copy>
</xsl:template>

<xsl:template match="@*">
 <xsl:copy/>
</xsl:template>

</xsl:stylesheet>