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

Unified Diff: core/html/ValidityState.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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/TimeRanges.idl ('k') | core/html/VoidCallback.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/ValidityState.idl
diff --git a/core/html/ValidityState.idl b/core/html/ValidityState.idl
index d4f72538d3a77bb0ae670cd202b586481fd7a4c9..5883d832ca190cd337bafa88c1330416101dc3f0 100644
--- a/core/html/ValidityState.idl
+++ b/core/html/ValidityState.idl
@@ -20,17 +20,20 @@
*
*/
+// https://html.spec.whatwg.org/#validitystate
+
[
WillBeGarbageCollected
] interface ValidityState {
- readonly attribute boolean valueMissing;
- readonly attribute boolean typeMismatch;
- readonly attribute boolean patternMismatch;
- readonly attribute boolean tooLong;
- readonly attribute boolean rangeUnderflow;
- readonly attribute boolean rangeOverflow;
- readonly attribute boolean stepMismatch;
- readonly attribute boolean badInput;
- readonly attribute boolean customError;
- readonly attribute boolean valid;
+ readonly attribute boolean valueMissing;
+ readonly attribute boolean typeMismatch;
+ readonly attribute boolean patternMismatch;
+ readonly attribute boolean tooLong;
+ readonly attribute boolean tooShort;
+ readonly attribute boolean rangeUnderflow;
+ readonly attribute boolean rangeOverflow;
+ readonly attribute boolean stepMismatch;
+ readonly attribute boolean badInput;
+ readonly attribute boolean customError;
+ readonly attribute boolean valid;
};
« no previous file with comments | « core/html/TimeRanges.idl ('k') | core/html/VoidCallback.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698