Index: Source/core/html/HTMLFormElement.h |
diff --git a/Source/core/html/HTMLFormElement.h b/Source/core/html/HTMLFormElement.h |
index d0db27f98514b7c8216f5a0b2486d84fbe103094..1ba399ddb1f333ff8a6eba1a2ff46f3de0dae801 100644 |
--- a/Source/core/html/HTMLFormElement.h |
+++ b/Source/core/html/HTMLFormElement.h |
@@ -118,6 +118,9 @@ public: |
void anonymousNamedGetter(const AtomicString& name, bool&, RefPtrWillBeRawPtr<RadioNodeList>&, bool&, RefPtrWillBeRawPtr<Element>&); |
+protected: |
+ virtual void attributeChanged(const QualifiedName&, const AtomicString&, AttributeModificationReason = ModifiedDirectly) OVERRIDE; |
+ |
private: |
explicit HTMLFormElement(Document&); |
@@ -181,7 +184,12 @@ private: |
bool m_wasDemoted; |
+ bool m_insecureSubmissionReported; |
+ |
OwnPtr<GenericEventQueue> m_pendingAutocompleteEventsQueue; |
+ |
+ KURL getActionURL() const { |
+ return document().completeURL(m_attributes.action().isEmpty() ? document().url().string() : m_attributes.action()); } |
}; |
} // namespace WebCore |