Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: Source/WebCore/html/HTMLSelectElement.idl

Issue 13933014: Gen index getter by unified way instead of using several helper function in some special cases. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: removed debug printf Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 IndexedGetter,
23 CustomIndexedSetter, 22 CustomIndexedSetter,
24 CustomIndexedGetter, 23 CustomIndexedGetter,
25 SkipVTableValidation 24 SkipVTableValidation
26 ] interface HTMLSelectElement : HTMLElement { 25 ] interface HTMLSelectElement : HTMLElement {
27 [Reflect] attribute boolean autofocus; 26 [Reflect] attribute boolean autofocus;
28 [Reflect] attribute boolean disabled; 27 [Reflect] attribute boolean disabled;
29 readonly attribute HTMLFormElement form; 28 readonly attribute HTMLFormElement form;
30 attribute boolean multiple; 29 attribute boolean multiple;
31 [Reflect] attribute DOMString name; 30 [Reflect] attribute DOMString name;
32 [Reflect] attribute boolean required; 31 [Reflect] attribute boolean required;
(...skipping 16 matching lines...) Expand all
49 [TreatNullAs=NullString] attribute DOMString value; 48 [TreatNullAs=NullString] attribute DOMString value;
50 49
51 readonly attribute boolean willValidate; 50 readonly attribute boolean willValidate;
52 readonly attribute ValidityState validity; 51 readonly attribute ValidityState validity;
53 readonly attribute DOMString validationMessage; 52 readonly attribute DOMString validationMessage;
54 boolean checkValidity(); 53 boolean checkValidity();
55 void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error); 54 void setCustomValidity([TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
56 55
57 readonly attribute NodeList labels; 56 readonly attribute NodeList labels;
58 }; 57 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698