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

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

Issue 14859003: Remove the compile time flag for DATALIST Element. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebasing after r150849 Created 7 years, 7 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
« no previous file with comments | « Source/core/html/HTMLInputElement.cpp ('k') | Source/core/html/HTMLOptionElement.h » ('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, 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 *
(...skipping 20 matching lines...) Expand all
31 [Reflect] attribute boolean disabled; 31 [Reflect] attribute boolean disabled;
32 readonly attribute HTMLFormElement form; 32 readonly attribute HTMLFormElement form;
33 attribute FileList files; 33 attribute FileList files;
34 [Reflect, URL] attribute DOMString formAction; 34 [Reflect, URL] attribute DOMString formAction;
35 [TreatNullAs=NullString] attribute DOMString formEnctype; 35 [TreatNullAs=NullString] attribute DOMString formEnctype;
36 [TreatNullAs=NullString] attribute DOMString formMethod; 36 [TreatNullAs=NullString] attribute DOMString formMethod;
37 [Reflect] attribute boolean formNoValidate; 37 [Reflect] attribute boolean formNoValidate;
38 [Reflect] attribute DOMString formTarget; 38 [Reflect] attribute DOMString formTarget;
39 attribute unsigned long height; 39 attribute unsigned long height;
40 attribute boolean indeterminate; 40 attribute boolean indeterminate;
41 [Conditional=DATALIST_ELEMENT] readonly attribute HTMLElement list; 41 [EnabledAtRuntime=DataListElement] readonly attribute HTMLElement list;
42 [Reflect] attribute DOMString max; 42 [Reflect] attribute DOMString max;
43 [SetterRaisesException] attribute long maxLength; 43 [SetterRaisesException] attribute long maxLength;
44 [Reflect] attribute DOMString min; 44 [Reflect] attribute DOMString min;
45 [Reflect] attribute boolean multiple; 45 [Reflect] attribute boolean multiple;
46 [Reflect] attribute DOMString name; 46 [Reflect] attribute DOMString name;
47 [Reflect] attribute DOMString pattern; 47 [Reflect] attribute DOMString pattern;
48 [Reflect] attribute DOMString placeholder; 48 [Reflect] attribute DOMString placeholder;
49 [Reflect] attribute boolean readOnly; 49 [Reflect] attribute boolean readOnly;
50 [Reflect] attribute boolean required; 50 [Reflect] attribute boolean required;
51 [SetterRaisesException] attribute unsigned long size; // Changed string -> l ong -> unsigned long 51 [SetterRaisesException] attribute unsigned long size; // Changed string -> l ong -> unsigned long
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 [Reflect, EnabledAtRuntime=directoryUpload] attribute boolean webkitdirector y; 90 [Reflect, EnabledAtRuntime=directoryUpload] attribute boolean webkitdirector y;
91 [Reflect] attribute DOMString useMap; 91 [Reflect] attribute DOMString useMap;
92 [Reflect] attribute boolean incremental; 92 [Reflect] attribute boolean incremental;
93 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute boolean webkitSpeech; 93 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute boolean webkitSpeech;
94 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute boolean webkitGrammar; 94 [Conditional=INPUT_SPEECH, Reflect, EnabledAtRuntime=speechInput] attribute boolean webkitGrammar;
95 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitsp eechchange; 95 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitsp eechchange;
96 96
97 // See http://www.w3.org/TR/html-media-capture/ 97 // See http://www.w3.org/TR/html-media-capture/
98 [Conditional=MEDIA_CAPTURE] attribute DOMString capture; 98 [Conditional=MEDIA_CAPTURE] attribute DOMString capture;
99 }; 99 };
OLDNEW
« no previous file with comments | « Source/core/html/HTMLInputElement.cpp ('k') | Source/core/html/HTMLOptionElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698