[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

jhoneycutt at apple.com jhoneycutt at apple.com
Wed Dec 22 12:52:59 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 6ea96fe3c846ec2493f15ba8da619041eddcc19e
Author: jhoneycutt at apple.com <jhoneycutt at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Sep 1 00:20:49 2010 +0000

    Fix some copy/paste errors.
    
    Reviewed by Steve Falkenburg.
    
    * WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp:
    (WebKit::InjectedBundlePageFormClient::textFieldDidEndEditing):
    Null check the correct callback.
    (WebKit::InjectedBundlePageFormClient::textDidChangeInTextField):
    Ditto.
    (WebKit::InjectedBundlePageFormClient::textDidChangeInTextArea):
    Ditto.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66558 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 63c8c9d..d6df3e1 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,5 +1,19 @@
 2010-08-31  Jon Honeycutt  <jhoneycutt at apple.com>
 
+        Fix some copy/paste errors.
+
+        Reviewed by Steve Falkenburg.
+
+        * WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp:
+        (WebKit::InjectedBundlePageFormClient::textFieldDidEndEditing):
+        Null check the correct callback.
+        (WebKit::InjectedBundlePageFormClient::textDidChangeInTextField):
+        Ditto.
+        (WebKit::InjectedBundlePageFormClient::textDidChangeInTextArea):
+        Ditto.
+
+2010-08-31  Jon Honeycutt  <jhoneycutt at apple.com>
+
         Crash when closing a page with a form field when using WebKit2.
 
         Reviewed by Anders Carlsson.
diff --git a/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp b/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp
index cfbcc4c..71a95c9 100644
--- a/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp
+++ b/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp
@@ -59,7 +59,7 @@ void InjectedBundlePageFormClient::textFieldDidBeginEditing(WebPage* page, WebCo
 
 void InjectedBundlePageFormClient::textFieldDidEndEditing(WebPage* page, WebCore::HTMLInputElement* inputElement, WebFrame* frame)
 {
-    if (!m_client.textFieldDidBeginEditing)
+    if (!m_client.textFieldDidEndEditing)
         return;
 
     RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
@@ -68,7 +68,7 @@ void InjectedBundlePageFormClient::textFieldDidEndEditing(WebPage* page, WebCore
 
 void InjectedBundlePageFormClient::textDidChangeInTextField(WebPage* page, WebCore::HTMLInputElement* inputElement, WebFrame* frame)
 {
-    if (!m_client.textFieldDidBeginEditing)
+    if (!m_client.textDidChangeInTextField)
         return;
 
     RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement);
@@ -77,7 +77,7 @@ void InjectedBundlePageFormClient::textDidChangeInTextField(WebPage* page, WebCo
 
 void InjectedBundlePageFormClient::textDidChangeInTextArea(WebPage* page, WebCore::HTMLTextAreaElement* textAreaElement, WebFrame* frame)
 {
-    if (!m_client.textFieldDidBeginEditing)
+    if (!m_client.textDidChangeInTextArea)
         return;
 
     RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(textAreaElement);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list