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

mjs mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:27:28 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 6e76229b335382916f1e64171b0e5c592aac7ac1
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 5 07:14:53 2003 +0000

    	Reinstate missing part of last checking.
    
            * WebView.subproj/WebFramePrivate.m:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3750 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6da8a7a..51f3932 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,11 @@
 2003-03-04  Maciej Stachowiak  <mjs at apple.com>
 
+	Reinstate missing part of last checking.
+	
+        * WebView.subproj/WebFramePrivate.m:
+
+2003-03-04  Maciej Stachowiak  <mjs at apple.com>
+
         Reviewed by Trey.
 
 	Added the ability to set the top-level frame name via the
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index f039ebb..823334a 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -302,6 +302,13 @@ Repeat load of the same URL (by any other means of navigation other than the rel
     return nil;
 }
 
+- (void)_setName:(NSString *)name
+{
+    // It's wrong to name a frame "_blank".
+    if (![name isEqualToString:@"_blank"]) {
+	[_private setName:name];
+    }
+}
 
 - (WebFrame *)_descendantFrameNamed:(NSString *)name
 {

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list