diff options
Diffstat (limited to 'WebCore/html/HTMLInputElement.h')
-rw-r--r-- | WebCore/html/HTMLInputElement.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/html/HTMLInputElement.h b/WebCore/html/HTMLInputElement.h index b055e73..3b9ba88 100644 --- a/WebCore/html/HTMLInputElement.h +++ b/WebCore/html/HTMLInputElement.h @@ -180,6 +180,10 @@ public: bool multiple() const; +#if ENABLE(DIRECTORY_UPLOAD) + bool webkitdirectory() const; +#endif + virtual bool isAutofilled() const { return m_autofilled; } void setAutofilled(bool value = true); @@ -299,6 +303,7 @@ private: void updateCheckedRadioButtons(); + void handleBeforeTextInsertedEvent(Event*); PassRefPtr<HTMLFormElement> createTemporaryFormForIsIndex(); // Helper for getAllowedValueStep(); bool getStepParameters(double* defaultStep, double* stepScaleFactor) const; |