mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-01 08:48:49 +00:00
LibWeb: Implement the HTMLInputElement.width
attribute
This allows the width of an image button input to be set and queried.
This commit is contained in:
parent
8e3adbe082
commit
45a2823e08
Notes:
github-actions[bot]
2024-11-30 10:19:31 +00:00
Author: https://github.com/tcl3
Commit: 45a2823e08
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2645
5 changed files with 79 additions and 4 deletions
|
@ -128,6 +128,9 @@ public:
|
|||
WebIDL::UnsignedLong size() const;
|
||||
WebIDL::ExceptionOr<void> set_size(WebIDL::UnsignedLong value);
|
||||
|
||||
WebIDL::UnsignedLong width() const;
|
||||
WebIDL::ExceptionOr<void> set_width(WebIDL::UnsignedLong value);
|
||||
|
||||
struct SelectedCoordinate {
|
||||
int x { 0 };
|
||||
int y { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue