xsl-list
[Top] [All Lists]

Re: CRLF in xslt in Firefox and IE

2005-07-06 15:26:58

I can confirm that you get CRLF in IE and LF in mozila.
It's clear that IE is wrong here but it _isn't_ wrong because it has
left CRLF pairs in the input (that would be terribly broken and would 
have been reported here before now)

If you add

[<xsl:value-of select="string-length('&#xD;&#xA;')"/>]

to your stylesheet you will see you get the value 2 from a conformant
system and 1 from IE.

msxml is normalizing the #10#13 pair even though it is in the
stylesheet as character references. so the XPath test that is actually
being done when you do
      <xsl:when test="contains(string(doc),'&#xD;&#xA;')">
in IE is actually
      <xsl:when test="contains(string(doc),'&#xA;')">
This is incorrect but doesn't hit you in real stylesheets as you don't
normally test for #10#13 pairs as you "know" they are not there....

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>