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

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

Issue 2440513002: Add inputmode support to content editable. (Closed)
Patch Set: Add TODO Created 4 years, 1 month 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) 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 25 matching lines...) Expand all
36 // The 'files' attribute is intentionally not readonly. 36 // The 'files' attribute is intentionally not readonly.
37 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682 37 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682
38 attribute FileList? files; 38 attribute FileList? files;
39 [CEReactions] attribute DOMString formAction; 39 [CEReactions] attribute DOMString formAction;
40 [CEReactions, CustomElementCallbacks] attribute DOMString formEnctype; 40 [CEReactions, CustomElementCallbacks] attribute DOMString formEnctype;
41 [CEReactions, CustomElementCallbacks] attribute DOMString formMethod; 41 [CEReactions, CustomElementCallbacks] attribute DOMString formMethod;
42 [CEReactions, Reflect] attribute boolean formNoValidate; 42 [CEReactions, Reflect] attribute boolean formNoValidate;
43 [CEReactions, Reflect] attribute DOMString formTarget; 43 [CEReactions, Reflect] attribute DOMString formTarget;
44 [CEReactions, CustomElementCallbacks] attribute unsigned long height; 44 [CEReactions, CustomElementCallbacks] attribute unsigned long height;
45 attribute boolean indeterminate; 45 attribute boolean indeterminate;
46 [RuntimeEnabled=InputModeAttribute, CEReactions, Reflect] attribute DOMStrin g inputMode;
47 readonly attribute HTMLElement? list; 46 readonly attribute HTMLElement? list;
48 [CEReactions, Reflect] attribute DOMString max; 47 [CEReactions, Reflect] attribute DOMString max;
49 [CEReactions, RaisesException=Setter, CustomElementCallbacks] attribute long maxLength; 48 [CEReactions, RaisesException=Setter, CustomElementCallbacks] attribute long maxLength;
50 [CEReactions, Reflect] attribute DOMString min; 49 [CEReactions, Reflect] attribute DOMString min;
51 [CEReactions, RaisesException=Setter, CustomElementCallbacks] attribute long minLength; 50 [CEReactions, RaisesException=Setter, CustomElementCallbacks] attribute long minLength;
52 [CEReactions, Reflect] attribute boolean multiple; 51 [CEReactions, Reflect] attribute boolean multiple;
53 [CEReactions, Reflect] attribute DOMString name; 52 [CEReactions, Reflect] attribute DOMString name;
54 [CEReactions, Reflect] attribute DOMString pattern; 53 [CEReactions, Reflect] attribute DOMString pattern;
55 [CEReactions, Reflect] attribute DOMString placeholder; 54 [CEReactions, Reflect] attribute DOMString placeholder;
56 [CEReactions, Reflect] attribute boolean readOnly; 55 [CEReactions, Reflect] attribute boolean readOnly;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 [Measure] attribute DOMString autocapitalize; 104 [Measure] attribute DOMString autocapitalize;
106 105
107 // HTML Media Capture 106 // HTML Media Capture
108 // http://www.w3.org/TR/html-media-capture/ 107 // http://www.w3.org/TR/html-media-capture/
109 [RuntimeEnabled=MediaCapture, Reflect] attribute boolean capture; 108 [RuntimeEnabled=MediaCapture, Reflect] attribute boolean capture;
110 109
111 // Non-standard APIs 110 // Non-standard APIs
112 [Reflect, MeasureAs=PrefixedDirectoryAttribute] attribute boolean webkitdire ctory; 111 [Reflect, MeasureAs=PrefixedDirectoryAttribute] attribute boolean webkitdire ctory;
113 [Reflect, MeasureAs=IncrementalAttribute] attribute boolean incremental; 112 [Reflect, MeasureAs=IncrementalAttribute] attribute boolean incremental;
114 }; 113 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698