xsl-list
[Top] [All Lists]

Re: testing 1st child

2004-08-06 06:12:27
 <xsl:when
  test="child::figure|child::table|child::warning|child::caution|child::note">

child:: is the default axis so that is the same as

<xsl:when
test="figure|table|warning|caution|note">

and tests if the current node has any of those children.
You only want to test the first child, so select that first, then use the
self:: axis to see what you have:

<xsl:when
test="*[1][self::figure or self::table or self::warning or self::caution or 
self::note]">

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________


<Prev in Thread] Current Thread [Next in Thread>