485217.xsl 584 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3. <xsl:key name="label" match="item2" use="undeclaredfunc()"/>
  4. <xsl:template match="root">
  5. <xsl:for-each select="//item1">
  6. <xsl:call-template name="item1" />
  7. </xsl:for-each>
  8. </xsl:template>
  9. <xsl:template name="item1">
  10. <xsl:for-each select="key('label', 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')">
  11. </xsl:for-each>
  12. </xsl:template>
  13. </xsl:stylesheet>