diff options
Diffstat (limited to 'WebCore/html/HTMLInputElement.idl')
-rw-r--r-- | WebCore/html/HTMLInputElement.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/WebCore/html/HTMLInputElement.idl b/WebCore/html/HTMLInputElement.idl index a9b6d2c..0734e6a 100644 --- a/WebCore/html/HTMLInputElement.idl +++ b/WebCore/html/HTMLInputElement.idl @@ -21,7 +21,6 @@ module html { interface [ - CustomGetOwnPropertySlot, GenerateConstructor, InterfaceUUID=8f388ea3-1c31-4cca-8edd-449d14e222e1, ImplementationUUID=aeb56b87-a90e-4d9d-a4d5-7eec3687c338 @@ -37,6 +36,7 @@ module html { attribute boolean disabled; attribute boolean autofocus; attribute long maxLength; + attribute boolean multiple; attribute [ConvertNullToNullString] DOMString name; attribute boolean readOnly; #if defined(LANGUAGE_OBJECTIVE_C) @@ -58,9 +58,9 @@ module html { // WinIE & FireFox extension: - attribute [CustomGetter] long selectionStart; - attribute [CustomGetter] long selectionEnd; - void setSelectionRange(in long start, in long end); + attribute [Custom] long selectionStart; + attribute [Custom] long selectionEnd; + [Custom] void setSelectionRange(in long start, in long end); #if defined(LANGUAGE_OBJECTIVE_C) // Objective-C extension: |