Re: Firefox XSLT position()
David <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.layout.xslt |
|---|---|
| Organization | Guest of ProXad - France |
| Message-ID | <[email protected]> |
Martin Honnen a écrit : > There are white space text nodes between the <BBB> elements which > MSXML/IE ignores thus with Mozilla if you use > <xsl:apply-templates /> > the current nodeset contains both element nodes as well as text nodes > while MSXML/IE has only elements in the nodeset. > Ok thanks. So either I put my XML on one line something like : <AAA><BBB>a</BBB><BBB>b</BBB><BBB>c</BBB></AAA> or I use <xsl:strip-space elements="*"/> in the beggining of my XSL.