summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLInputElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLInputElement.h')
-rw-r--r--WebCore/html/HTMLInputElement.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/WebCore/html/HTMLInputElement.h b/WebCore/html/HTMLInputElement.h
index a9a7bb0..5bcf01f 100644
--- a/WebCore/html/HTMLInputElement.h
+++ b/WebCore/html/HTMLInputElement.h
@@ -105,6 +105,9 @@ public:
bool isNumberField() const { return m_type == NUMBER; }
bool isEmailField() const { return m_type == EMAIL; }
bool isUrlField() const { return m_type == URL; }
+#if ENABLE(INPUT_SPEECH)
+ virtual bool isSpeechEnabled() const;
+#endif
bool checked() const { return m_checked; }
void setChecked(bool, bool sendChangeEvent = false);
@@ -207,6 +210,10 @@ public:
HTMLOptionElement* selectedOption() const;
#endif
+#if ENABLE(WCSS)
+ void setWapInputFormat(String& mask);
+#endif
+
protected:
HTMLInputElement(const QualifiedName&, Document*, HTMLFormElement* = 0);
@@ -334,7 +341,6 @@ private:
#endif
#if ENABLE(WCSS)
- void setWapInputFormat(String& mask);
virtual InputElementData data() const { return m_data; }
#endif