[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:32:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0ea8e8fa28b301dbc2572ab4feb5d8bf392a85f6
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Apr 7 23:25:45 2004 +0000

            Reviewed by Chris
    
            * kwq/WebCoreBridge.mm:
            (-[WebCoreBridge _stringWithDocumentTypeStringAndMarkupString:]): Do not add a newline in between
            the doctype and the content. The newline was showing up when the content was pasted.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6326 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index eca4018..2aa7bab 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,13 @@
 2004-04-07  Ken Kocienda  <kocienda at apple.com>
 
+        Reviewed by Chris
+
+        * kwq/WebCoreBridge.mm:
+        (-[WebCoreBridge _stringWithDocumentTypeStringAndMarkupString:]): Do not add a newline in between
+        the doctype and the content. The newline was showing up when the content was pasted.
+
+2004-04-07  Ken Kocienda  <kocienda at apple.com>
+
         Reviewed by John
 
         Removed concept of currentSelection from EditCommands and refined concept of
diff --git a/WebCore/kwq/WebCoreBridge.mm b/WebCore/kwq/WebCoreBridge.mm
index d0194d0..d49092c 100644
--- a/WebCore/kwq/WebCoreBridge.mm
+++ b/WebCore/kwq/WebCoreBridge.mm
@@ -453,7 +453,7 @@ static bool initializedKJS = FALSE;
 {
     NSString *documentTypeString = [self _documentTypeString];
     if (documentTypeString && markupString) {
-        return [NSString stringWithFormat:@"%@\n%@", documentTypeString, markupString];
+        return [NSString stringWithFormat:@"%@%@", documentTypeString, markupString];
     } else if (documentTypeString) {
         return documentTypeString;
     } else if (markupString) {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list