LibWeb: Add support for reflected boolean values

Also throw in some missing reflected DOMString values
This commit is contained in:
Luke 2020-11-09 08:15:10 +00:00 committed by Andreas Kling
commit e2e6b03a45
Notes: sideshowbarker 2024-07-19 01:29:26 +09:00
21 changed files with 79 additions and 8 deletions

View file

@ -12,4 +12,13 @@ interface HTMLInputElement : HTMLElement {
[Reflect=value] attribute DOMString defaultValue;
attribute boolean checked;
[Reflect] attribute boolean disabled;
[Reflect=checked] attribute boolean defaultChecked;
[Reflect=formnovalidate] attribute boolean formNoValidate;
[Reflect=formtarget] attribute DOMString formTarget;
[Reflect] attribute boolean multiple;
[Reflect=readonly] attribute boolean readOnly;
[Reflect] attribute boolean required;
}