[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 08:25:51 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 0a99ce6b5af685ca1552c2a10294213337fc772e
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Feb 9 21:13:45 2004 +0000

            Reviewed by Dave.
    
            * khtml/html/html_formimpl.cpp: (HTMLGenericFormElementImpl::defaultEventHandler):
            Removed bogus extra setActive/focus code. Dave says this is no longer needed for
            the active state handling, and the focus call caused a problem, although I can't
            find the bug report at the moment.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6054 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 8d6be11..6fa71e7 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2004-02-09  Darin Adler  <darin at apple.com>
+
+        Reviewed by Dave.
+
+        * khtml/html/html_formimpl.cpp: (HTMLGenericFormElementImpl::defaultEventHandler):
+        Removed bogus extra setActive/focus code. Dave says this is no longer needed for
+        the active state handling, and the focus call caused a problem, although I can't
+        find the bug report at the moment.
+
 2004-02-08  Darin Adler  <darin at apple.com>
 
         Reviewed by Don.
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 1d42226..9832e53 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -897,21 +897,6 @@ void HTMLGenericFormElementImpl::defaultEventHandler(EventImpl *evt)
             if (ext)
                 ext->editableWidgetFocused(widget);
         }
-        if (evt->id()==EventImpl::MOUSEDOWN_EVENT || evt->id()==EventImpl::KEYDOWN_EVENT)
-        {
-            setActive();
-        }
-        else if (evt->id() == EventImpl::MOUSEUP_EVENT || evt->id()==EventImpl::KEYUP_EVENT)
-        {
-	    if (m_active)
-	    {
-		setActive(false);
-		setFocus();
-	    }
-	    else {
-                setActive(false);
-            }
-        }
 
 #if APPLE_CHANGES
 	// We don't want this default key event handling, we'll count on

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list