Changeset 20827 for S60/trunk/WebKit
- Timestamp:
- 04/10/07 14:11:35 (21 months ago)
- Location:
- S60/trunk/WebKit
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
ResourceLoader/src/ContentDispatcher.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
S60/trunk/WebKit/ChangeLog
r20825 r20827 1 2007-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 1 11 2007-04-10 spadma 2 12 -
S60/trunk/WebKit/ResourceLoader/src/ContentDispatcher.cpp
r14723 r20827 63 63 64 64 // CONSTANTS 65 _LIT( KContentTypeTextPlain, "text/plain" );66 65 _LIT( KContentTypeApplicationWapXhtml, "application/vnd.wap.xhtml+xml" ); 67 66 _LIT( KContentTypeMultipartMixed, "multipart/mixed" ); … … 130 129 supportedContent.iContentType.Set( KContentTypeMultipartMixed ); 131 130 supportedContent.iContentHandler = iMultipartContentHandler; 132 iContentTypeList->AppendL( supportedContent );133 134 // text/plain135 supportedContent.iContentType.Set( KContentTypeTextPlain );136 // no modification required on the content137 supportedContent.iContentHandler = NULL;138 131 iContentTypeList->AppendL( supportedContent ); 139 132