summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/ValidityState.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/ValidityState.idl')
-rw-r--r--Source/WebCore/html/ValidityState.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/html/ValidityState.idl b/Source/WebCore/html/ValidityState.idl
index ba9cf1856..5b79bd348 100644
--- a/Source/WebCore/html/ValidityState.idl
+++ b/Source/WebCore/html/ValidityState.idl
@@ -21,17 +21,17 @@
*/
[
- NoInterfaceObject,
SkipVTableValidation
] interface ValidityState {
readonly attribute boolean valueMissing;
readonly attribute boolean typeMismatch;
readonly attribute boolean patternMismatch;
+ readonly attribute boolean tooShort;
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;
+ [ImplementedAs=isValid] readonly attribute boolean valid;
};