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 * |
11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
15 * | 15 * |
16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
20 */ | 20 */ |
21 | 21 |
22 [ | 22 [ |
23 SkipVTableValidation | 23 SkipVTableValidation |
24 ] interface HTMLInputElement : HTMLElement { | 24 ] interface HTMLInputElement : HTMLElement { |
25 [Reflect] attribute DOMString accept; | 25 [Reflect, ImplementedAs=accept_] attribute DOMString accept; |
26 [Reflect] attribute DOMString alt; | 26 [Reflect] attribute DOMString alt; |
27 [Reflect] attribute DOMString autocomplete; | 27 [Reflect] attribute DOMString autocomplete; |
28 [Reflect] attribute boolean autofocus; | 28 [Reflect] attribute boolean autofocus; |
29 [Reflect=checked] attribute boolean defaultChecked; | 29 [Reflect=checked] attribute boolean defaultChecked; |
30 attribute boolean checked; | 30 attribute boolean checked; |
31 [Reflect] attribute DOMString dirName; | 31 [Reflect] attribute DOMString dirName; |
32 [Reflect] attribute boolean disabled; | 32 [Reflect] attribute boolean disabled; |
33 readonly attribute HTMLFormElement form; | 33 readonly attribute HTMLFormElement form; |
34 attribute FileList files; | 34 attribute FileList files; |
35 [Reflect, URL] attribute DOMString formAction; | 35 [Reflect, URL] attribute DOMString formAction; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 [Reflect, EnabledAtRuntime=directoryUpload] attribute boolean webkitdirector
y; | 91 [Reflect, EnabledAtRuntime=directoryUpload] attribute boolean webkitdirector
y; |
92 [Reflect] attribute DOMString useMap; | 92 [Reflect] attribute DOMString useMap; |
93 [Reflect] attribute boolean incremental; | 93 [Reflect] attribute boolean incremental; |
94 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitSpeech; | 94 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitSpeech; |
95 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitGrammar; | 95 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute
boolean webkitGrammar; |
96 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitsp
eechchange; | 96 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitsp
eechchange; |
97 | 97 |
98 // See http://www.w3.org/TR/html-media-capture/ | 98 // See http://www.w3.org/TR/html-media-capture/ |
99 [Conditional=MEDIA_CAPTURE] attribute DOMString capture; | 99 [Conditional=MEDIA_CAPTURE] attribute DOMString capture; |
100 }; | 100 }; |
OLD | NEW |