summaryrefslogtreecommitdiff
path: root/tests/test.xsl
blob: 22660fedb6543f07c256ded47bb2a871c43199f1 (plain)
1
2
3
4
5
6
7
8
<?xml version="1.0"?>
<xsl:stylesheet version="1.0">
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>