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

kocienda kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:11:16 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f25de7653dd34fd6ff3554a9f2ce2fbf0cdec24f
Author: kocienda <kocienda at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 12 20:08:37 2003 +0000

            Reviewed by me
    
    	I am an idiot for just assuming that these elements implement a focus()
    	function, without actually compiling and testing. I will have to add
    	this function to these elements so I can make this work.
    
            * khtml/html/html_formimpl.cpp:
            (HTMLButtonElementImpl::accessKeyAction): These elements do not implement focus().
            * khtml/html/html_inlineimpl.cpp:
            (HTMLAnchorElementImpl::accessKeyAction): Ditto.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@5469 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index f72cca3..05ae355 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,5 +1,18 @@
 2003-11-12  Ken Kocienda  <kocienda at apple.com>
 
+        Reviewed by me
+	
+	I am an idiot for just assuming that these elements implement a focus()
+	function, without actually compiling and testing. I will have to add 
+	this function to these elements so I can make this work.
+
+        * khtml/html/html_formimpl.cpp:
+        (HTMLButtonElementImpl::accessKeyAction): These elements do not implement focus().
+        * khtml/html/html_inlineimpl.cpp:
+        (HTMLAnchorElementImpl::accessKeyAction): Ditto.
+
+2003-11-12  Ken Kocienda  <kocienda at apple.com>
+
         Reviewed by Richard
 
         * khtml/html/html_formimpl.cpp:
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index f5045a6..0d472bb 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -1103,7 +1103,6 @@ void HTMLButtonElementImpl::click()
 
 void HTMLButtonElementImpl::accessKeyAction()
 {   
-    focus();
     click();
 }
 
diff --git a/WebCore/khtml/html/html_inlineimpl.cpp b/WebCore/khtml/html/html_inlineimpl.cpp
index b0b7d88..e91ffee 100644
--- a/WebCore/khtml/html/html_inlineimpl.cpp
+++ b/WebCore/khtml/html/html_inlineimpl.cpp
@@ -191,7 +191,6 @@ void HTMLAnchorElementImpl::parseAttribute(AttributeImpl *attr)
 
 void HTMLAnchorElementImpl::accessKeyAction()
 {
-    focus();
     click();
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list