mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibWeb: Implement the HTMLInputElement.height
attribute
This allows the height of an image button input to be set and queried.
This commit is contained in:
parent
45a2823e08
commit
b39fdcfec2
Notes:
github-actions[bot]
2024-11-30 10:19:26 +00:00
Author: https://github.com/tcl3
Commit: b39fdcfec2
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2645
5 changed files with 60 additions and 1 deletions
|
@ -44,6 +44,7 @@
|
|||
|
||||
testProperty("img", "hspace", (img) => img.hspace, (img, value) => img.hspace = value);
|
||||
testProperty("input", "size", (input) => input.size, (input, value) => input.size = value);
|
||||
testProperty(imageButtonInputFactory, "height", (input) => input.height, (input, value) => input.height = value);
|
||||
testProperty(imageButtonInputFactory, "width", (input) => input.width, (input, value) => input.width = value);
|
||||
testProperty("marquee", "scrollAmount", (marquee) => marquee.scrollAmount, (marquee, value) => marquee.scrollAmount = value);
|
||||
testProperty("marquee", "scrollDelay", (marquee) => marquee.scrollDelay, (marquee, value) => marquee.scrollDelay = value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue