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

cblu cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:09:51 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit dc17efbdfb6a68ec68c96e06f692d30c77ea0ab8
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Nov 6 21:03:38 2003 +0000

    	Fixed: <rdar://problem/3308609>: 6L60 Safari URL links with line-endings converted to hex by contextual menu
    
            Reviewed by rjw.
    
            * kwq/WebCoreBridge.mm:
            (-[WebCoreBridge elementAtPoint:]): use parseURL to go from an attribute string to a URL string
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5409 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index bfb831e..c3b9530 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-11-06  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: <rdar://problem/3308609>: 6L60 Safari URL links with line-endings converted to hex by contextual menu
+
+        Reviewed by rjw.
+
+        * kwq/WebCoreBridge.mm:
+        (-[WebCoreBridge elementAtPoint:]): use parseURL to go from an attribute string to a URL string
+
 === Safari-113 ===
 
 2003-11-06  John Sullivan  <sullivan at apple.com>
diff --git a/WebCore/kwq/WebCoreBridge.mm b/WebCore/kwq/WebCoreBridge.mm
index 9266d65..d292097 100644
--- a/WebCore/kwq/WebCoreBridge.mm
+++ b/WebCore/kwq/WebCoreBridge.mm
@@ -732,7 +732,8 @@ static HTMLFormElementImpl *formElementFromDOMElement(id <WebDOMElement>element)
                     [element setObject:t.getNSString() forKey:WebCoreElementLinkLabelKey];
                 }
             }
-            [element setObject:_part->xmlDocImpl()->completeURL(link.string()).getNSString() forKey:WebCoreElementLinkURLKey];
+            QString URLString = parseURL(link).string();
+            [element setObject:_part->xmlDocImpl()->completeURL(URLString).getNSString() forKey:WebCoreElementLinkURLKey];
         }
         
         DOMString target = e->getAttribute(ATTR_TARGET);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list