This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: XT and SAXON treats //ccc and /descendant::ccc differently


> By now I thought that //foo is an abbrev form of /descendant::foo
> Am I missing something or  is there some shared bug ?  Thanks. 

The former.

xpath spec says

As in location paths, // is short for
     /descendant-or-self::node()/.


> <xsl:value-of select="//ccc[5]"/>   gives no hit
> <xsl:value-of select="/descendant::ccc[5]"/> gives c22  

and one assumes 

<xsl:value-of select="/descendant-or-self::node()/ccc[5]"/> does the
same as //

"//ccc[5]" selects ccc elements that are 5th ccc children of their
parents.

David


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]