github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/REC/test-5.2-22.xsl (about)

     1  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     2  
     3      <xsl:template match="doc">
     4          <xsl:copy>
     5              <xsl:apply-templates select="*"/>
     6          </xsl:copy>
     7      </xsl:template>
     8  
     9      <xsl:template match="doc[last()][last()]/elem">
    10          <xsl:text>success</xsl:text>
    11      </xsl:template>
    12  
    13  </xsl:stylesheet>