[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:17 UTC 2009


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

    	Fix Radar 2953256 - Auth sheet appears detached when clicking
    	directly on auth link with Alex not running
    
            * Panels.subproj/IFStandardPanels.m:
            (-[IFStandardPanels frontmostWindowLoadingURL:]): Don't consider
    	windows that are not visible.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1478 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index a281e2f..c5b914b 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,12 @@
+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
+	
+        * Panels.subproj/IFStandardPanels.m:
+        (-[IFStandardPanels frontmostWindowLoadingURL:]): Don't consider
+	windows that are not visible.
+
 2002-06-29  Darin Adler  <darin at apple.com>
 
         * WebCoreSupport.subproj/IFImageRenderer.m:
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index a281e2f..c5b914b 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,12 @@
+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
+	
+        * Panels.subproj/IFStandardPanels.m:
+        (-[IFStandardPanels frontmostWindowLoadingURL:]): Don't consider
+	windows that are not visible.
+
 2002-06-29  Darin Adler  <darin at apple.com>
 
         * WebCoreSupport.subproj/IFImageRenderer.m:
diff --git a/WebKit/Panels.subproj/IFStandardPanels.m b/WebKit/Panels.subproj/IFStandardPanels.m
index 261aec0..668202d 100644
--- a/WebKit/Panels.subproj/IFStandardPanels.m
+++ b/WebKit/Panels.subproj/IFStandardPanels.m
@@ -199,7 +199,7 @@ static BOOL WindowInFront(NSWindow *a, NSWindow *b)
 	    window = [[[object mainFrame] webView] window];
 	}
 
-	if (window != nil && (frontmostWindow == nil || WindowInFront(window, frontmostWindow))) {
+	if (window != nil && [window isVisible] && (frontmostWindow == nil || WindowInFront(window, frontmostWindow))) {
 	    frontmostWindow = window;
 	}
     }
diff --git a/WebKit/Panels.subproj/WebStandardPanels.m b/WebKit/Panels.subproj/WebStandardPanels.m
index 261aec0..668202d 100644
--- a/WebKit/Panels.subproj/WebStandardPanels.m
+++ b/WebKit/Panels.subproj/WebStandardPanels.m
@@ -199,7 +199,7 @@ static BOOL WindowInFront(NSWindow *a, NSWindow *b)
 	    window = [[[object mainFrame] webView] window];
 	}
 
-	if (window != nil && (frontmostWindow == nil || WindowInFront(window, frontmostWindow))) {
+	if (window != nil && [window isVisible] && (frontmostWindow == nil || WindowInFront(window, frontmostWindow))) {
 	    frontmostWindow = window;
 	}
     }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list