blob: 7f95602c6665ba6c0747f4c9e553304b76effcb3 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: AXES73 -->
<!-- Document: http://www.w3.org/TR/xpath -->
<!-- DocVersion: 19991116 -->
<!-- Section: 2.4 -->
<!-- Creator: David Marston -->
<!-- Purpose: Compound test where we bounce "horizontally" across the tree, using positions. -->
<xsl:template match="/">
<out>
<xsl:for-each select="//center">
<xsl:apply-templates select="preceding-sibling::*[2]/following-sibling::*[4]/preceding-sibling::*[5]/following-sibling::*[4]/following-sibling::*[2]"/>
<!-- Nodes in order: west, east, far-west, near-east, far-east -->
</xsl:for-each>
</out>
</xsl:template>
<xsl:template match="*">
<xsl:text> </xsl:text><xsl:value-of select="name(.)"/>
</xsl:template>
</xsl:stylesheet>