- From: Ian Hickson <ian@hixie.ch>
- Date: Fri, 22 Jun 2007 00:01:53 +0000 (UTC)
On Thu, 7 Jun 2007, Anne van Kesteren wrote: > > [CR "entities" and LFCR] should be converted to LF too. Done for CR entities. I couldn't reproduce LFCR->LF anywhere other than Firefox, and I'm not really convinced that Firefox does it reliably everywhere either, so I've not done that. > One thing that might be interesting to look into is the handling of LFCR > in browsers (as opposed to CRLF). I haven't done that yet... Some > browsers (just tested Opera) also normalize two newline entities > following each other (CRLF pair). I couldn't reproduce that -- IE came close but really IE is just dumping all CRs on the floor. <!DOCTYPE html>[<span>error</span>] <script> document.getElementsByTagName('span')[0].innerHTML = '
'; document.write(document.getElementsByTagName('span')[0].firstChild.data.charCodeAt(0) + ';') document.write(document.getElementsByTagName('span')[0].firstChild.data.charCodeAt(1)) </script> Opera: 13;10 Firefox: 10;10 Safari: 10;10 IE: 32;NaN -- Ian Hickson U+1047E )\._.,--....,'``. fL http://ln.hixie.ch/ U+263A /, _.. \ _\ ;`._ ,. Things that are impossible just take longer. `._.-(,_..'--(,_..'`-.;.'
Received on Thursday, 21 June 2007 17:01:53 UTC