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

Side by Side Diff: html/HTMLOptionsCollection.idl

Issue 14107003: Update WebKit IDLs after chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: reupload again. 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 | Annotate | Revision Log
« no previous file with comments | « html/HTMLOptionElement.idl ('k') | html/HTMLPropertiesCollection.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 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 JSGenerateToNativeObject,
23 CustomIndexedSetter, 22 CustomIndexedSetter,
24 NamedGetter, 23 NamedGetter,
25 GenerateIsReachable=ImplOwnerNodeRoot, 24 GenerateIsReachable=ImplOwnerNodeRoot,
26 V8CustomIndexedGetter, 25 V8CustomIndexedGetter,
27 V8DependentLifetime, 26 V8DependentLifetime,
28 ] interface HTMLOptionsCollection : HTMLCollection { 27 ] interface HTMLOptionsCollection : HTMLCollection {
29 attribute long selectedIndex; 28 attribute long selectedIndex;
30 [CustomSetter] attribute unsigned long length 29 [CustomSetter] attribute unsigned long length
31 setter raises (DOMException); 30 setter raises (DOMException);
32 31
33 [Custom] Node namedItem(in [Optional=DefaultIsUndefined] DOMString name); 32 [Custom] Node namedItem(in [Optional=DefaultIsUndefined] DOMString name);
34 33
35 [Custom] void add(in [Optional=DefaultIsUndefined] HTMLOptionElement option, 34 [Custom] void add(in [Optional=DefaultIsUndefined] HTMLOptionElement option,
36 in [Optional] unsigned long index) 35 in [Optional] unsigned long index)
37 raises (DOMException); 36 raises (DOMException);
38 [Custom] void remove(in [Optional=DefaultIsUndefined] unsigned long index); 37 [Custom] void remove(in [Optional=DefaultIsUndefined] unsigned long index);
39 38
40 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 39 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
41 Node item(in unsigned long index); 40 Node item(in unsigned long index);
42 #endif 41 #endif
43 }; 42 };
44 43
OLDNEW
« no previous file with comments | « html/HTMLOptionElement.idl ('k') | html/HTMLPropertiesCollection.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698