summaryrefslogtreecommitdiff
path: root/tests/REC/test-5.2-18.xsl
blob: 0669e93a19ed3bc55a906505224c5e345f6291df (plain)
1
2
3
4
5
6
7
8
9
<xsl:stylesheet version="1.0"
		xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:apply-templates select="/doc/para/@*"/>
</xsl:template>
<xsl:template match="@*">
<xsl:text>Success</xsl:text>
</xsl:template>
</xsl:stylesheet>