summaryrefslogtreecommitdiffstats
path: root/WebCore/html/NumberInputType.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/NumberInputType.h')
-rw-r--r--WebCore/html/NumberInputType.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/WebCore/html/NumberInputType.h b/WebCore/html/NumberInputType.h
index 5347249..262955e 100644
--- a/WebCore/html/NumberInputType.h
+++ b/WebCore/html/NumberInputType.h
@@ -42,6 +42,20 @@ public:
private:
NumberInputType(HTMLInputElement* element) : TextFieldInputType(element) { }
virtual const AtomicString& formControlType() const;
+ virtual double valueAsNumber() const;
+ virtual void setValueAsNumber(double, ExceptionCode&) const;
+ virtual bool typeMismatchFor(const String&) const;
+ virtual bool typeMismatch() const;
+ virtual bool rangeUnderflow(const String&) const;
+ virtual bool rangeOverflow(const String&) const;
+ virtual double minimum() const;
+ virtual double maximum() const;
+ virtual bool stepMismatch(const String&, double) const;
+ virtual double stepBase() const;
+ virtual double defaultStep() const;
+ virtual double stepScaleFactor() const;
+ virtual double parseToDouble(const String&, double) const;
+ virtual String serialize(double) const;
};
} // namespace WebCore