mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Add a bunch of missing CEReactions
This is almost guaranteed not to be all CEReactions we need to add, but this puts us in a much better situation.
This commit is contained in:
committed by
Andreas Kling
parent
034aaf3f51
commit
32e27bc7fa
Notes:
sideshowbarker
2024-07-17 07:19:27 +09:00
Author: https://github.com/Lubrsi Commit: https://github.com/SerenityOS/serenity/commit/32e27bc7fa Pull-request: https://github.com/SerenityOS/serenity/pull/18092
@@ -11,35 +11,35 @@ interface HTMLInputElement : HTMLElement {
|
||||
readonly attribute HTMLFormElement? form;
|
||||
attribute FileList? files;
|
||||
|
||||
[Reflect] attribute DOMString accept;
|
||||
[Reflect] attribute DOMString alt;
|
||||
[Reflect] attribute DOMString max;
|
||||
[Reflect] attribute DOMString min;
|
||||
[Reflect] attribute DOMString pattern;
|
||||
[Reflect] attribute DOMString placeholder;
|
||||
[Reflect] attribute DOMString src;
|
||||
[Reflect] attribute DOMString step;
|
||||
[Reflect] attribute DOMString name;
|
||||
[Reflect=dirname] attribute DOMString dirName;
|
||||
[Reflect=value] attribute DOMString defaultValue;
|
||||
[CEReactions, Reflect] attribute DOMString accept;
|
||||
[CEReactions, Reflect] attribute DOMString alt;
|
||||
[CEReactions, Reflect] attribute DOMString max;
|
||||
[CEReactions, Reflect] attribute DOMString min;
|
||||
[CEReactions, Reflect] attribute DOMString pattern;
|
||||
[CEReactions, Reflect] attribute DOMString placeholder;
|
||||
[CEReactions, Reflect] attribute DOMString src;
|
||||
[CEReactions, Reflect] attribute DOMString step;
|
||||
[CEReactions, Reflect] attribute DOMString name;
|
||||
[CEReactions, Reflect=dirname] attribute DOMString dirName;
|
||||
[CEReactions, Reflect=value] attribute DOMString defaultValue;
|
||||
|
||||
attribute DOMString type;
|
||||
[CEReactions] attribute DOMString type;
|
||||
attribute boolean indeterminate;
|
||||
|
||||
[LegacyNullToEmptyString] attribute DOMString value;
|
||||
[CEReactions, LegacyNullToEmptyString] attribute DOMString value;
|
||||
|
||||
[ImplementedAs=checked_binding] 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;
|
||||
[CEReactions, Reflect] attribute boolean disabled;
|
||||
[CEReactions, Reflect=checked] attribute boolean defaultChecked;
|
||||
[CEReactions, Reflect=formnovalidate] attribute boolean formNoValidate;
|
||||
[CEReactions, Reflect=formtarget] attribute DOMString formTarget;
|
||||
[CEReactions, Reflect] attribute boolean multiple;
|
||||
[CEReactions, Reflect=readonly] attribute boolean readOnly;
|
||||
[CEReactions, Reflect] attribute boolean required;
|
||||
|
||||
[Reflect] attribute DOMString align;
|
||||
[Reflect=usemap] attribute DOMString useMap;
|
||||
[CEReactions, Reflect] attribute DOMString align;
|
||||
[CEReactions, Reflect=usemap] attribute DOMString useMap;
|
||||
|
||||
boolean checkValidity();
|
||||
boolean reportValidity();
|
||||
|
||||
Reference in New Issue
Block a user