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

Unified Diff: core/html/HTMLInputElement.idl

Issue 22498002: Roll IDL to multivm@1329 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLImageElement.idl ('k') | core/html/HTMLLIElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLInputElement.idl
diff --git a/core/html/HTMLInputElement.idl b/core/html/HTMLInputElement.idl
index 00e4a1ea64a2260c653b91af8b8bae2ee1096ca3..2911901c13023e9d06e0617e3c2d271bc5b11c7c 100644
--- a/core/html/HTMLInputElement.idl
+++ b/core/html/HTMLInputElement.idl
@@ -30,6 +30,8 @@
[Reflect] attribute DOMString dirName;
[Reflect] attribute boolean disabled;
readonly attribute HTMLFormElement form;
+ // The 'files' attribute is intentionally not readonly.
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22682
attribute FileList files;
[Reflect, URL] attribute DOMString formAction;
[TreatNullAs=NullString] attribute DOMString formEnctype;
@@ -57,6 +59,7 @@
[TreatNullAs=NullString, SetterRaisesException] attribute DOMString value;
[SetterRaisesException] attribute Date valueAsDate;
[SetterRaisesException] attribute double valueAsNumber;
+ [EnabledAtRuntime=inputModeAttribute, Reflect] attribute DOMString inputMode;
[RaisesException] void stepUp(optional long n);
[RaisesException] void stepDown(optional long n);
@@ -96,5 +99,5 @@
[Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitspeechchange;
// See http://www.w3.org/TR/html-media-capture/
- [Conditional=MEDIA_CAPTURE] attribute DOMString capture;
+ [Conditional=MEDIA_CAPTURE, Reflect] attribute boolean capture;
};
« no previous file with comments | « core/html/HTMLImageElement.idl ('k') | core/html/HTMLLIElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698