summaryrefslogtreecommitdiff
path: root/tests/REC/test-5.4-5.xsl
blob: d0d192e11931cc80c613923c284fe33f230127c9 (plain)
1
2
3
4
5
6
7
8
9
10
<xsl:stylesheet version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="doc">
    <xsl:apply-templates select=".//div"/>
</xsl:template>
<xsl:template match="div">
<xsl:text>div found </xsl:text>
</xsl:template>
</xsl:stylesheet>