blob: dbf778ec2626281654c749a373a6285e8b0a1cc7 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: AXES28 -->
<!-- Document: http://www.w3.org/TR/xpath -->
<!-- DocVersion: 19991116 -->
<!-- Section: 2.2 -->
<!-- Purpose: Test for 'following::' Axis Identifier with wildcard and index. -->
<xsl:template match="/">
<out>
<xsl:for-each select="//center">
<xsl:apply-templates select="following::*[4]"/>
</xsl:for-each>
</out>
</xsl:template>
<xsl:template match="*">
<xsl:value-of select="name(.)"/>
</xsl:template>
</xsl:stylesheet>