Changeset 54443 in webkit


Ignore:
Timestamp:
Feb 5, 2010 1:58:45 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-05 James Hawkins <jhawkins@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):
Location:
trunk/WebKit/chromium
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r54425 r54443  
     12010-02-05  James Hawkins  <jhawkins@chromium.org>
     2
     3        Reviewed by Darin Fisher.
     4
     5        Implement WebInputElement::isActivatedSubmit().
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=34623
     8
     9        * public/WebInputElement.h:
     10        * src/WebInputElement.cpp:
     11        (WebKit::WebInputElement::isActivatedSubmit):
     12
    1132010-02-05  Nate Chapin  <japhet@chromium.org>
    214
  • trunk/WebKit/chromium/public/WebInputElement.h

    r52488 r54443  
    8282            Week
    8383        };
    84        
     84
    8585        WEBKIT_API bool autoComplete() const;
    8686        WEBKIT_API bool isEnabledFormControl() const;
    8787        WEBKIT_API InputType inputType() const;
    8888        WEBKIT_API WebString formControlType() const;
     89        WEBKIT_API bool isActivatedSubmit() const;
    8990        WEBKIT_API void setActivatedSubmit(bool);
    9091        WEBKIT_API void setValue(const WebString& value);
     
    9899        // string if it has no name and no id.
    99100        WEBKIT_API WebString nameForAutofill() const;
    100        
    101101    };
    102102
  • trunk/WebKit/chromium/src/WebInputElement.cpp

    r52488 r54443  
    7676    return constUnwrap<HTMLInputElement>()->formControlType();
    7777}
    78    
     78
     79bool WebInputElement::isActivatedSubmit() const
     80{
     81    return constUnwrap<HTMLInputElement>()->isActivatedSubmit();
     82}
     83
    7984void WebInputElement::setActivatedSubmit(bool activated)
    8085{
Note: See TracChangeset for help on using the changeset viewer.