[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

trey trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:37:16 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit c195e50a4d5b327822feb3c8f33716e633648e66
Author: trey <trey at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Apr 15 22:54:46 2003 +0000

    	3229318 - no back entry created when searching at lonelyplanet.com
    
            Reviewed by Darin.
    
            * khtml/ecma/kjs_binding.cpp:
            (ScriptInterpreter::wasRunByUserGesture):  Treat blur/focus events as being
    	user gestures, since they probably were caused by something the user did.
    	This cues us to not lock history for navigations that are spawned by these events.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4111 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index bfdaf57..4c3e1ae 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,14 @@
+2003-04-15  Trey Matteson  <trey at apple.com>
+
+	3229318 - no back entry created when searching at lonelyplanet.com
+
+        Reviewed by Darin.
+
+        * khtml/ecma/kjs_binding.cpp:
+        (ScriptInterpreter::wasRunByUserGesture):  Treat blur/focus events as being
+	user gestures, since they probably were caused by something the user did.
+	This cues us to not lock history for navigations that are spawned by these events.
+
 2003-04-15  David Hyatt  <hyatt at apple.com>
 
 	A collection of fixes.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index bfdaf57..4c3e1ae 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,14 @@
+2003-04-15  Trey Matteson  <trey at apple.com>
+
+	3229318 - no back entry created when searching at lonelyplanet.com
+
+        Reviewed by Darin.
+
+        * khtml/ecma/kjs_binding.cpp:
+        (ScriptInterpreter::wasRunByUserGesture):  Treat blur/focus events as being
+	user gestures, since they probably were caused by something the user did.
+	This cues us to not lock history for navigations that are spawned by these events.
+
 2003-04-15  David Hyatt  <hyatt at apple.com>
 
 	A collection of fixes.
diff --git a/WebCore/khtml/ecma/kjs_binding.cpp b/WebCore/khtml/ecma/kjs_binding.cpp
index 4764ffb..200e4f9 100644
--- a/WebCore/khtml/ecma/kjs_binding.cpp
+++ b/WebCore/khtml/ecma/kjs_binding.cpp
@@ -238,6 +238,7 @@ bool ScriptInterpreter::wasRunByUserGesture() const
       id == DOM::EventImpl::KHTML_KEYUP_EVENT ||
       // other accepted events
       id == DOM::EventImpl::SELECT_EVENT || id == DOM::EventImpl::CHANGE_EVENT ||
+      id == DOM::EventImpl::FOCUS_EVENT || id == DOM::EventImpl::BLUR_EVENT ||
       id == DOM::EventImpl::SUBMIT_EVENT );
     kdDebug(6070) << "Window.open, smart policy: id=" << id << " eventOk=" << eventOk << endl;
     if (eventOk)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list