mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +02:00
LibWeb: Add input and textarea minlength and maxlength support
This commit is contained in:
committed by
Tim Flynn
parent
9b645d20b9
commit
a2f101c10b
Notes:
sideshowbarker
2024-07-17 21:11:12 +09:00
Author: https://github.com/bplaat Commit: https://github.com/SerenityOS/serenity/commit/a2f101c10b Pull-request: https://github.com/SerenityOS/serenity/pull/22944 Reviewed-by: https://github.com/AtkinsSJ Reviewed-by: https://github.com/shannonbooth Reviewed-by: https://github.com/trflynn89
@@ -25,9 +25,9 @@ interface HTMLInputElement : HTMLElement {
|
||||
attribute boolean indeterminate;
|
||||
// FIXME: readonly attribute HTMLDataListElement? list;
|
||||
[CEReactions, Reflect] attribute DOMString max;
|
||||
// FIXME: [CEReactions] attribute long maxLength;
|
||||
[CEReactions] attribute long maxLength;
|
||||
[CEReactions, Reflect] attribute DOMString min;
|
||||
// FIXME: [CEReactions] attribute long minLength;
|
||||
[CEReactions] attribute long minLength;
|
||||
[CEReactions, Reflect] attribute boolean multiple;
|
||||
[CEReactions, Reflect] attribute DOMString name;
|
||||
// FIXME: [CEReactions] attribute DOMString pattern;
|
||||
|
||||
Reference in New Issue
Block a user