Changeset 20827 for S60/trunk/WebKit

Show
Ignore:
Timestamp:
04/10/07 14:11:35 (21 months ago)
Author:
spadma
Message:

2007-04-10 spadma

Reviewed by Zalan.
DESC: browser fails to properly render the <cr> <lf> special characters when a text file displayed
http://bugs.webkit.org/show_bug.cgi?id=13324
TSW ID : JKRL-6ZSH8Q

  • ResourceLoader/src/ContentDispatcher.cpp: (CContentDispatcher::ConstructL):
Location:
S60/trunk/WebKit
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • S60/trunk/WebKit/ChangeLog

    r20825 r20827  
     12007-04-10  spadma 
     2 
     3        Reviewed by Zalan. 
     4        DESC: browser fails to properly render the <cr> <lf> special characters when a text file displayed 
     5        http://bugs.webkit.org/show_bug.cgi?id=13324 
     6        TSW ID : JKRL-6ZSH8Q 
     7 
     8        * ResourceLoader/src/ContentDispatcher.cpp: 
     9        (CContentDispatcher::ConstructL): 
     10 
    1112007-04-10  spadma 
    212 
  • S60/trunk/WebKit/ResourceLoader/src/ContentDispatcher.cpp

    r14723 r20827  
    6363 
    6464// CONSTANTS 
    65 _LIT( KContentTypeTextPlain, "text/plain" ); 
    6665_LIT( KContentTypeApplicationWapXhtml, "application/vnd.wap.xhtml+xml" ); 
    6766_LIT( KContentTypeMultipartMixed, "multipart/mixed" ); 
     
    130129    supportedContent.iContentType.Set( KContentTypeMultipartMixed ); 
    131130    supportedContent.iContentHandler = iMultipartContentHandler; 
    132     iContentTypeList->AppendL( supportedContent ); 
    133  
    134     // text/plain 
    135     supportedContent.iContentType.Set( KContentTypeTextPlain ); 
    136     // no modification required on the content 
    137     supportedContent.iContentHandler = NULL; 
    138131    iContentTypeList->AppendL( supportedContent ); 
    139132