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 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
14 * | 14 * |
15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
19 */ | 19 */ |
20 | 20 |
21 [ | 21 [ |
22 CustomIndexedSetter, | 22 CustomIndexedSetter |
23 ] interface HTMLSelectElement : HTMLElement { | 23 ] interface HTMLSelectElement : HTMLElement { |
24 [Reflect] attribute boolean autofocus; | 24 [Reflect] attribute boolean autofocus; |
25 [Reflect] attribute boolean disabled; | 25 [Reflect] attribute boolean disabled; |
26 readonly attribute HTMLFormElement form; | 26 readonly attribute HTMLFormElement form; |
27 attribute boolean multiple; | 27 attribute boolean multiple; |
28 [Reflect] attribute DOMString name; | 28 [Reflect] attribute DOMString name; |
29 [Reflect] attribute boolean required; | 29 [Reflect] attribute boolean required; |
30 attribute long size; | 30 attribute long size; |
31 | 31 |
32 readonly attribute DOMString type; | 32 readonly attribute DOMString type; |
(...skipping 13 matching lines...) Expand all Loading... |
46 [TreatNullAs=NullString] attribute DOMString value; | 46 [TreatNullAs=NullString] attribute DOMString value; |
47 | 47 |
48 readonly attribute boolean willValidate; | 48 readonly attribute boolean willValidate; |
49 readonly attribute ValidityState validity; | 49 readonly attribute ValidityState validity; |
50 readonly attribute DOMString validationMessage; | 50 readonly attribute DOMString validationMessage; |
51 boolean checkValidity(); | 51 boolean checkValidity(); |
52 void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString]
DOMString error); | 52 void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString]
DOMString error); |
53 | 53 |
54 readonly attribute NodeList labels; | 54 readonly attribute NodeList labels; |
55 }; | 55 }; |
OLD | NEW |