mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 02:59:45 +00:00
LibWeb: Restrict HTMLTextAreaElement::min_length
to the range of i32
This commit is contained in:
parent
ac7fad52f6
commit
7097152ebc
Notes:
github-actions[bot]
2024-12-02 09:26:49 +00:00
Author: https://github.com/tcl3
Commit: 7097152ebc
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2685
3 changed files with 21 additions and 2 deletions
|
@ -55,6 +55,7 @@
|
|||
testProperty("marquee", "scrollAmount", (marquee) => marquee.scrollAmount, (marquee, value) => marquee.scrollAmount = value);
|
||||
testProperty("marquee", "scrollDelay", (marquee) => marquee.scrollDelay, (marquee, value) => marquee.scrollDelay = value);
|
||||
testProperty("select", "size", (select) => select.size, (select, value) => select.size = value);
|
||||
testProperty("textarea", "maxLength", (textarea) => textarea.maxLength, (textarea, value) => textarea.maxLength = value);
|
||||
testProperty("textarea", "minLength", (textarea) => textarea.minLength, (textarea, value) => textarea.minLength = value);
|
||||
testProperty("textarea", "rows", (textarea) => textarea.rows, (textarea, value) => textarea.rows = value);
|
||||
testProperty("textarea", "cols", (textarea) => textarea.cols, (textarea, value) => textarea.cols = value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue