1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-03 05:12:14 +00:00

LibWeb: Add HTMLButtonElement#disabled

This commit is contained in:
Luke Wilde 2023-06-18 15:10:11 +01:00 committed by Andreas Kling
parent e19892a099
commit 14ae0524e9

View file

@ -6,6 +6,7 @@ interface HTMLButtonElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute boolean disabled;
[CEReactions, Reflect=formnovalidate] attribute boolean formNoValidate;
[CEReactions, Reflect=formtarget] attribute DOMString formTarget;
[CEReactions, Reflect] attribute DOMString name;