1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:58:12 +00:00

LibWeb: Add support for the input size attribute

This commit is contained in:
Bastiaan van der Plaat 2023-11-24 17:37:53 +01:00 committed by Andreas Kling
parent d9fb116bcc
commit fb7b03d162
5 changed files with 30 additions and 9 deletions

View file

@ -34,7 +34,7 @@ interface HTMLInputElement : HTMLElement {
[CEReactions, Reflect] attribute DOMString placeholder;
[CEReactions, Reflect=readonly] attribute boolean readOnly;
[CEReactions, Reflect] attribute boolean required;
// FIXME: [CEReactions] attribute unsigned long size;
[CEReactions] attribute unsigned long size;
[CEReactions, Reflect] attribute DOMString src;
[CEReactions, Reflect] attribute DOMString step;
[CEReactions] attribute DOMString type;