OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2012 Samsung Electronics. All rights reserved. |
5 * | 5 * |
6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
10 * | 10 * |
(...skipping 13 matching lines...) Expand all Loading... |
24 interface HTMLInputElement : HTMLElement { | 24 interface HTMLInputElement : HTMLElement { |
25 attribute [Reflect] DOMString accept; | 25 attribute [Reflect] DOMString accept; |
26 attribute [Reflect] DOMString alt; | 26 attribute [Reflect] DOMString alt; |
27 attribute [Reflect] DOMString autocomplete; | 27 attribute [Reflect] DOMString autocomplete; |
28 attribute [Reflect] boolean autofocus; | 28 attribute [Reflect] boolean autofocus; |
29 attribute [Reflect=checked] boolean defaultChecked; | 29 attribute [Reflect=checked] boolean defaultChecked; |
30 attribute boolean checked; | 30 attribute boolean checked; |
31 attribute [Reflect] DOMString dirName; | 31 attribute [Reflect] DOMString dirName; |
32 attribute [Reflect] boolean disabled; | 32 attribute [Reflect] boolean disabled; |
33 readonly attribute HTMLFormElement form; | 33 readonly attribute HTMLFormElement form; |
34 readonly attribute FileList files; | 34 attribute FileList files; |
35 attribute [Reflect, URL] DOMString formAction; | 35 attribute [Reflect, URL] DOMString formAction; |
36 attribute [TreatNullAs=NullString] DOMString formEnctype; | 36 attribute [TreatNullAs=NullString] DOMString formEnctype; |
37 attribute [TreatNullAs=NullString] DOMString formMethod; | 37 attribute [TreatNullAs=NullString] DOMString formMethod; |
38 attribute [Reflect] boolean formNoValidate; | 38 attribute [Reflect] boolean formNoValidate; |
39 attribute [Reflect] DOMString formTarget; | 39 attribute [Reflect] DOMString formTarget; |
40 attribute unsigned long height; | 40 attribute unsigned long height; |
41 attribute boolean indeterminate; | 41 attribute boolean indeterminate; |
42 readonly attribute [Conditional=DATALIST] HTMLElement list; | 42 readonly attribute [Conditional=DATALIST] HTMLElement list; |
43 attribute [Reflect] DOMString max; | 43 attribute [Reflect] DOMString max; |
44 attribute long maxLength setter raises(DOMException); | 44 attribute long maxLength setter raises(DOMException); |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C | 112 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
113 // Objective-C extension: | 113 // Objective-C extension: |
114 readonly attribute DOMString altDisplayString; | 114 readonly attribute DOMString altDisplayString; |
115 readonly attribute URL absoluteImageURL; | 115 readonly attribute URL absoluteImageURL; |
116 #endif | 116 #endif |
117 | 117 |
118 // See http://www.w3.org/TR/html-media-capture/ | 118 // See http://www.w3.org/TR/html-media-capture/ |
119 attribute [Conditional=MEDIA_CAPTURE] DOMString capture; | 119 attribute [Conditional=MEDIA_CAPTURE] DOMString capture; |
120 }; | 120 }; |
121 } | 121 } |
OLD | NEW |