RE: [xml-dev] "self" axis for an attribute context node

From
Michael Kay <>
To
"'Oleg A. Paraschenko'" <>, 'xml-dev' <>
Date
2007-03-12T11:55:41
ID
<00cf01c7649d$5c32e1b0$6401a8c0@turtle>
Thread
RE: [xml-dev] "self" axis for an attribute context node
> I thought that the following XPath steps are equivanent:
> 
> something[name()='lalala']
> something[self::lalala]
> 
> However, it isn't so.
  <snip/>
> Why does it so?

A NameTest used in a step of a path expression selects nodes of the
principal node kind for the axis used in that step. The principal node kind
for the self axis is "element". A well-known gotcha (well-known to those who
know it, anyway). In 2.0 you can write self::attribute(lalala).

Michael Kay
http://www.saxonica.com/