[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 06:22:18 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0ecab44b41589c37b1375031a2e408fd86941042
Author: mjs <mjs at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jul 1 08:48:01 2002 +0000

    WebKit:
    
            Part of fix for Radar 2976618 - links targeting _blank hit
    	assertion trying to set provisional data source
    
    	* WebView.subproj/IFWebFrame.mm:
            (-[IFWebFrame frameNamed:]): Show the window.
    
    WebBrowser:
    
            Part of fix for Radar 2976618 - links targeting _blank hit
    	assertion trying to set provisional data source
    
    	* BrowserDocument.m:
            (-[BrowserDocument setShouldStartEmpty]): Ensure the window
    	exists, so that there are a frame and web view ready in time.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1479 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index c5b914b..07898f4 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,13 @@
 2002-07-01  Maciej Stachowiak  <mjs at apple.com>
 
+        Part of fix for Radar 2976618 - links targeting _blank hit
+	assertion trying to set provisional data source
+
+	* WebView.subproj/IFWebFrame.mm:
+        (-[IFWebFrame frameNamed:]): Show the window.
+
+2002-07-01  Maciej Stachowiak  <mjs at apple.com>
+
 	Fix Radar 2953256 - Auth sheet appears detached when clicking
 	directly on auth link with Alex not running
 	
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index c5b914b..07898f4 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,13 @@
 2002-07-01  Maciej Stachowiak  <mjs at apple.com>
 
+        Part of fix for Radar 2976618 - links targeting _blank hit
+	assertion trying to set provisional data source
+
+	* WebView.subproj/IFWebFrame.mm:
+        (-[IFWebFrame frameNamed:]): Show the window.
+
+2002-07-01  Maciej Stachowiak  <mjs at apple.com>
+
 	Fix Radar 2953256 - Auth sheet appears detached when clicking
 	directly on auth link with Alex not running
 	
diff --git a/WebKit/WebView.subproj/IFWebFrame.mm b/WebKit/WebView.subproj/IFWebFrame.mm
index 5becb9b..1307202 100644
--- a/WebKit/WebView.subproj/IFWebFrame.mm
+++ b/WebKit/WebView.subproj/IFWebFrame.mm
@@ -264,6 +264,8 @@
     
     else if ([name isEqualToString:@"_blank"]){
         IFWebController *newController = [[[self controller] windowContext] openNewWindowWithURL: nil];
+	[[[[newController windowContext] window] windowController] showWindow:nil];
+
         return [newController mainFrame];
     }
     
diff --git a/WebKit/WebView.subproj/WebFrame.m b/WebKit/WebView.subproj/WebFrame.m
index 5becb9b..1307202 100644
--- a/WebKit/WebView.subproj/WebFrame.m
+++ b/WebKit/WebView.subproj/WebFrame.m
@@ -264,6 +264,8 @@
     
     else if ([name isEqualToString:@"_blank"]){
         IFWebController *newController = [[[self controller] windowContext] openNewWindowWithURL: nil];
+	[[[[newController windowContext] window] windowController] showWindow:nil];
+
         return [newController mainFrame];
     }
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list