[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
darin
darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:11:47 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 4345ee6d3f432696d094d2784e25802a140bd847
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Dec 5 17:17:01 2002 +0000
Reviewed by Ken.
- fixed 3118647 -- REGRESSION: click policy no longer works
* WebView.subproj/WebFramePrivate.m:
(-[WebFrame _actionInformationForNavigationType:event:originalURL:]):
Allow mouse up events too. Those are usually the ones that trigger navigation.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2944 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 2a7c5fc..af30466 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,13 @@
+2002-12-05 Darin Adler <darin at apple.com>
+
+ Reviewed by Ken.
+
+ - fixed 3118647 -- REGRESSION: click policy no longer works
+
+ * WebView.subproj/WebFramePrivate.m:
+ (-[WebFrame _actionInformationForNavigationType:event:originalURL:]):
+ Allow mouse up events too. Those are usually the ones that trigger navigation.
+
2002-12-04 Darin Adler <darin at apple.com>
Reviewed by Maciej.
diff --git a/WebKit/WebView.subproj/WebFramePrivate.m b/WebKit/WebView.subproj/WebFramePrivate.m
index acd1662..1fdb060 100644
--- a/WebKit/WebView.subproj/WebFramePrivate.m
+++ b/WebKit/WebView.subproj/WebFramePrivate.m
@@ -1013,6 +1013,9 @@ static const char * const loadTypeNames[] = {
case NSLeftMouseDown:
case NSRightMouseDown:
case NSOtherMouseDown:
+ case NSLeftMouseUp:
+ case NSRightMouseUp:
+ case NSOtherMouseUp:
{
NSView *topViewInEventWindow = [[event window] contentView];
NSView *viewContainingPoint = [topViewInEventWindow hitTest:[topViewInEventWindow convertPoint:[event locationInWindow] fromView:nil]];
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list