[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
sullivan
sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:30:10 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 98b7ed36997c7c6546782d48970ab8a8946418dc
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Aug 7 19:33:12 2002 +0000
- fixed 3017245 -- Shift-Delete should go forward
* WebView.subproj/WebView.m:
(-[WebView keyDown:]): Check for shift-delete.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1770 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 6e6cf81..c357f38 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-08-07 John Sullivan <sullivan at apple.com>
+
+ - fixed 3017245 -- Shift-Delete should go forward
+
+ * WebView.subproj/WebView.m:
+ (-[WebView keyDown:]): Check for shift-delete.
+
2002-08-07 Richard Williamson (Home) <rjw at apple.com>
Fixed scrollview related drawing turd problems.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 6e6cf81..c357f38 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-08-07 John Sullivan <sullivan at apple.com>
+
+ - fixed 3017245 -- Shift-Delete should go forward
+
+ * WebView.subproj/WebView.m:
+ (-[WebView keyDown:]): Check for shift-delete.
+
2002-08-07 Richard Williamson (Home) <rjw at apple.com>
Fixed scrollview related drawing turd problems.
diff --git a/WebKit/WebView.subproj/WebFrameView.m b/WebKit/WebView.subproj/WebFrameView.m
index 39e3731..03ece29 100644
--- a/WebKit/WebView.subproj/WebFrameView.m
+++ b/WebKit/WebView.subproj/WebFrameView.m
@@ -214,7 +214,13 @@ enum {
for (index = 0; index < count; ++index) {
switch ([characters characterAtIndex:index]) {
case NSDeleteCharacter:
- [self _goBack];
+ // This odd behavior matches some existing browsers,
+ // including Windows IE
+ if ([event modifierFlags] & NSShiftKeyMask) {
+ [self _goForward];
+ } else {
+ [self _goBack];
+ }
callSuper = NO;
break;
case SpaceKey:
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list