Subject: RE: Re: Assignment no, dynamic scoping si (was: Re: RE: Wishes for XSL revisions ...
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Thu, 3 Jan 2002 08:36:25 -0000
|
> (And just checking ... XPath experts ...
> ancestor-or-self::*[@source][last()] will give me the
> *closest* 'source'
> attribute on an ancestor or self ... not the most distant, won't it?)
It will give you the most distant. To get the innermost one, use
ancestor-or-self::*[@source][1]
or
(ancestor-or-self::*[@source])[last()]
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|