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

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

Issue 93723003: Rename HTMLElement::form() to formOwner(). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2013 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 interface HTMLSelectElement : HTMLElement { 22 interface HTMLSelectElement : HTMLElement {
23 [Reflect] attribute boolean autofocus; 23 [Reflect] attribute boolean autofocus;
24 [Reflect] attribute boolean disabled; 24 [Reflect] attribute boolean disabled;
25 readonly attribute HTMLFormElement form; 25 [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
26 attribute boolean multiple; 26 attribute boolean multiple;
27 [Reflect] attribute DOMString name; 27 [Reflect] attribute DOMString name;
28 [Reflect] attribute boolean required; 28 [Reflect] attribute boolean required;
29 attribute long size; 29 attribute long size;
30 30
31 readonly attribute DOMString type; 31 readonly attribute DOMString type;
32 32
33 readonly attribute HTMLOptionsCollection options; 33 readonly attribute HTMLOptionsCollection options;
34 [RaisesException=Setter] attribute unsigned long length; 34 [RaisesException=Setter] attribute unsigned long length;
35 35
(...skipping 10 matching lines...) Expand all
46 attribute DOMString value; 46 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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698