[Xsltforms-support] XPath "*" selects both elements and text in r330, Firefox 3.6
Brought to you by:
alain-couthures
|
From: Klotz, L. <Lei...@xe...> - 2010-01-25 17:11:01
|
If I do this:
<repeat nodeset="*">
<output ref="local-name(.)" />
</repeat>
With an instance that looks like this:
<data>
<foo />
<foo />
<foo />
...
</data>
I get this type of output:
foo
#text
foo
#text
foo
#text
foo
#text
However, XPath 1.0 says http://www.w3.org/TR/xpath/#path-abbrev
* selects all element children of the context node
Leigh.
|