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

<xsl:output method="xml" encoding="utf-8"/>

<xsl:template match="doc">
 <doc>
  <xsl:copy-of select="node()"/>
 </doc>
</xsl:template>

</xsl:stylesheet>