It seems to me that in Sablotron, <xsl:apply-templates/> applies templates 
to all descendants of the current node, while IE applies them to the direct 
children only. I think IE is right,
http://www.w3.org/TR/xslt#section-Applying-Template-Rules

In other words, in Sablotron
<xsl:apply-templates/>
equals
<xsl:apply-templates select=".//*"/>
while in IE
<xsl:apply-templates/>
equals
<xsl:apply-templates select="./*"/>

?
Jan Egil Kristiansen
Governmental Bank of the Faroe Islands

Reply via email to