[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.20-204-g221d8e8

eric at webkit.org eric at webkit.org
Wed Feb 10 22:17:14 UTC 2010


The following commit has been merged in the webkit-1.1 branch:
commit d2d8fd55e4aee2297affb8d9845301d6f5a0ffe5
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Feb 5 21:58:45 2010 +0000

    2010-02-05  James Hawkins  <jhawkins at chromium.org>
    
            Reviewed by Darin Fisher.
    
            Implement WebInputElement::isActivatedSubmit().
    
            https://bugs.webkit.org/show_bug.cgi?id=34623
    
            * public/WebInputElement.h:
            * src/WebInputElement.cpp:
            (WebKit::WebInputElement::isActivatedSubmit):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@54443 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 72dd915..077577d 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,15 @@
+2010-02-05  James Hawkins  <jhawkins at chromium.org>
+
+        Reviewed by Darin Fisher.
+
+        Implement WebInputElement::isActivatedSubmit().
+
+        https://bugs.webkit.org/show_bug.cgi?id=34623
+
+        * public/WebInputElement.h:
+        * src/WebInputElement.cpp:
+        (WebKit::WebInputElement::isActivatedSubmit):
+
 2010-02-05  Nate Chapin  <japhet at chromium.org>
 
         Reviewed by Dimitri Glazkov.
diff --git a/WebKit/chromium/public/WebInputElement.h b/WebKit/chromium/public/WebInputElement.h
index 226624a..59643d1 100644
--- a/WebKit/chromium/public/WebInputElement.h
+++ b/WebKit/chromium/public/WebInputElement.h
@@ -81,11 +81,12 @@ namespace WebKit {
             Time,
             Week
         };
-        
+
         WEBKIT_API bool autoComplete() const;
         WEBKIT_API bool isEnabledFormControl() const;
         WEBKIT_API InputType inputType() const;
         WEBKIT_API WebString formControlType() const;
+        WEBKIT_API bool isActivatedSubmit() const;
         WEBKIT_API void setActivatedSubmit(bool);
         WEBKIT_API void setValue(const WebString& value);
         WEBKIT_API WebString value() const;
@@ -97,7 +98,6 @@ namespace WebKit {
         // storing autofill data.  This is either the field name or its id, an empty
         // string if it has no name and no id.
         WEBKIT_API WebString nameForAutofill() const;
-        
     };
 
 } // namespace WebKit
diff --git a/WebKit/chromium/src/WebInputElement.cpp b/WebKit/chromium/src/WebInputElement.cpp
index ee799f6..9fd317f 100644
--- a/WebKit/chromium/src/WebInputElement.cpp
+++ b/WebKit/chromium/src/WebInputElement.cpp
@@ -75,7 +75,12 @@ WebString WebInputElement::formControlType() const
 {
     return constUnwrap<HTMLInputElement>()->formControlType();
 }
-    
+
+bool WebInputElement::isActivatedSubmit() const
+{
+    return constUnwrap<HTMLInputElement>()->isActivatedSubmit();
+}
+
 void WebInputElement::setActivatedSubmit(bool activated)
 {
     unwrap<HTMLInputElement>()->setActivatedSubmit(activated);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list