mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Implement validity IDL attribute
This commit is contained in:
parent
184ae687c5
commit
83c4e22247
Notes:
github-actions[bot]
2025-02-18 06:38:10 +00:00
Author: https://github.com/Psychpsyo
Commit: 83c4e22247
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3583
Reviewed-by: https://github.com/shannonbooth
Reviewed-by: https://github.com/tcl3 ✅
33 changed files with 2007 additions and 31 deletions
|
@ -1,15 +1,15 @@
|
|||
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#validitystate
|
||||
[Exposed=Window]
|
||||
interface ValidityState {
|
||||
[FIXME] readonly attribute boolean valueMissing;
|
||||
[FIXME] readonly attribute boolean typeMismatch;
|
||||
[FIXME] readonly attribute boolean patternMismatch;
|
||||
[FIXME] readonly attribute boolean tooLong;
|
||||
[FIXME] readonly attribute boolean tooShort;
|
||||
[FIXME] readonly attribute boolean rangeUnderflow;
|
||||
[FIXME] readonly attribute boolean rangeOverflow;
|
||||
[FIXME] readonly attribute boolean stepMismatch;
|
||||
[FIXME] readonly attribute boolean badInput;
|
||||
[FIXME] readonly attribute boolean customError;
|
||||
[FIXME] 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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue