diff options
Diffstat (limited to 'WebCore/html/HTMLInputElement.idl')
-rw-r--r-- | WebCore/html/HTMLInputElement.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/WebCore/html/HTMLInputElement.idl b/WebCore/html/HTMLInputElement.idl index b93f05c..c66e775 100644 --- a/WebCore/html/HTMLInputElement.idl +++ b/WebCore/html/HTMLInputElement.idl @@ -40,6 +40,9 @@ module html { attribute long maxLength setter raises(DOMException); attribute [Reflect] DOMString min; attribute [Reflect] boolean multiple; +#if defined(ENABLE_DIRECTORY_UPLOAD) && ENABLE_DIRECTORY_UPLOAD + attribute [Reflect] boolean webkitdirectory; +#endif attribute [Reflect] DOMString name; attribute [Reflect] DOMString pattern; attribute [Reflect] DOMString placeholder; @@ -95,6 +98,10 @@ module html { readonly attribute FileList files; readonly attribute NodeList labels; + +#if defined(ENABLE_INPUT_SPEECH) && ENABLE_INPUT_SPEECH + attribute [Reflect] boolean speech; +#endif }; } |