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

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 15:24:00 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit b278ca3d23aa2d0d78ef5f1c3649f3f149f4fd64
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 2 20:30:33 2010 +0000

    2010-11-02  Ilya Sherman  <isherman at chromium.org>
    
            Reviewed by Kent Tamura.
    
            Expose the sendChangeEvent parameter in WebInputElement::setValue() API,
            primarily so that chromium form autofill can fire the onChange event.
            https://bugs.webkit.org/show_bug.cgi?id=48177
    
            * public/WebInputElement.h:
            * src/WebInputElement.cpp:
            (WebKit::WebInputElement::setValue):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71158 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 061e777..baf0cf6 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,15 @@
+2010-11-02  Ilya Sherman  <isherman at chromium.org>
+
+        Reviewed by Kent Tamura.
+
+        Expose the sendChangeEvent parameter in WebInputElement::setValue() API,
+        primarily so that chromium form autofill can fire the onChange event.
+        https://bugs.webkit.org/show_bug.cgi?id=48177
+
+        * public/WebInputElement.h:
+        * src/WebInputElement.cpp:
+        (WebKit::WebInputElement::setValue):
+
 2010-11-02  Pavel Feldman  <pfeldman at chromium.org>
 
         Reviewed by Timothy Hatcher.
diff --git a/WebKit/chromium/public/WebInputElement.h b/WebKit/chromium/public/WebInputElement.h
index 8fea4fa..d0df079 100644
--- a/WebKit/chromium/public/WebInputElement.h
+++ b/WebKit/chromium/public/WebInputElement.h
@@ -66,7 +66,7 @@ namespace WebKit {
         WEBKIT_API bool isActivatedSubmit() const;
         WEBKIT_API void setActivatedSubmit(bool);
         WEBKIT_API int size() const;
-        WEBKIT_API void setValue(const WebString&);
+        WEBKIT_API void setValue(const WebString&, bool sendChangeEvent = false);
         WEBKIT_API WebString value() const;
         WEBKIT_API void setSuggestedValue(const WebString&);
         WEBKIT_API WebString suggestedValue() const;
diff --git a/WebKit/chromium/src/WebInputElement.cpp b/WebKit/chromium/src/WebInputElement.cpp
index 7779dbc..9d50ed1 100644
--- a/WebKit/chromium/src/WebInputElement.cpp
+++ b/WebKit/chromium/src/WebInputElement.cpp
@@ -95,9 +95,9 @@ int WebInputElement::size() const
     return constUnwrap<HTMLInputElement>()->size();
 }
 
-void WebInputElement::setValue(const WebString& value)
+void WebInputElement::setValue(const WebString& value, bool sendChangeEvent)
 {
-    unwrap<HTMLInputElement>()->setValue(value);
+    unwrap<HTMLInputElement>()->setValue(value, sendChangeEvent);
 }
 
 WebString WebInputElement::value() const

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list