diff options
Diffstat (limited to 'WebCore/html/HTMLFormElement.h')
-rw-r--r-- | WebCore/html/HTMLFormElement.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/WebCore/html/HTMLFormElement.h b/WebCore/html/HTMLFormElement.h index a2a5897..5aa9a5c 100644 --- a/WebCore/html/HTMLFormElement.h +++ b/WebCore/html/HTMLFormElement.h @@ -98,6 +98,8 @@ public: virtual String target() const; + FormSubmissionTrigger submissionTrigger() const; + HTMLFormControlElement* defaultButton() const; bool checkValidity(); @@ -153,6 +155,8 @@ private: Vector<HTMLFormControlElement*> m_associatedElements; Vector<HTMLImageElement*> m_imageElements; + FormSubmissionTrigger m_submissionTrigger; + bool m_autocomplete : 1; bool m_insubmit : 1; bool m_doingsubmit : 1; |