[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 07:35:12 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 2613658f089a8f78ced2390ecf0b760481771c7b
Author: cblu <cblu at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Apr 8 05:41:56 2003 +0000

    	Fixed: 3206018 - REGRESSION: Clicks on the BBC news ticker applet don't open story in new window
    
    	MSIE and Netscape for Windows treat a nil target as _top. Since this is usually the target audience of applet developers, we will mimic this. This makes 3206018 behave as expected.
    
            Reviewed by gramps.
    
            * Plugins.subproj/WebPluginController.m:
            (-[WebPluginController showURL:inFrame:]): treat nil as _top.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4042 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 4078fe8..c1eb5aa 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,14 @@
+2003-04-07  Chris Blumenberg  <cblu at apple.com>
+
+	Fixed: 3206018 - REGRESSION: Clicks on the BBC news ticker applet don't open story in new window
+
+	MSIE and Netscape for Windows treat a nil target as _top. Since this is usually the target audience of applet developers, we will mimic this. This makes 3206018 behave as expected.
+
+        Reviewed by gramps.
+
+        * Plugins.subproj/WebPluginController.m:
+        (-[WebPluginController showURL:inFrame:]): treat nil as _top.
+
 2003-04-07  Richard Williamson  <rjw at apple.com>
 
         API conveniences for IB.
diff --git a/WebKit/Plugins.subproj/WebPluginController.m b/WebKit/Plugins.subproj/WebPluginController.m
index 189e4d8..c53028f 100644
--- a/WebKit/Plugins.subproj/WebPluginController.m
+++ b/WebKit/Plugins.subproj/WebPluginController.m
@@ -108,6 +108,9 @@
         ERROR("could not load URL %@", URL);
         return;
     }
+    if (!target) {
+        target = @"_top";
+    }
     [frame _loadRequest:request inFrameNamed:target];
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list