blob: 1c9d2ac11cc2e925448b68c3660eb6ed92919edd [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: axes61 -->
<!-- Document: http://www.w3.org/TR/xpath -->
<!-- DocVersion: 19991116 -->
<!-- Section: 2.2 -->
<!-- Creator: Paul Dick -->
<!-- Purpose: Test for 'child::*' in match pattern. -->
<xsl:template match="/">
<out>
<xsl:for-each select="//near-north">
<xsl:apply-templates select="child::*"/>
</xsl:for-each>
</out>
</xsl:template>
<xsl:template match="child::*">
<xsl:value-of select="name(.)"/><xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>