1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:28:11 +00:00

LibWeb: Implement HTMLButtonElement.type

This commit is contained in:
Luke Wilde 2022-03-01 21:06:29 +00:00 committed by Andreas Kling
parent 432d496ed6
commit 29f9947ff9
3 changed files with 49 additions and 0 deletions

View file

@ -6,5 +6,6 @@ interface HTMLButtonElement : HTMLElement {
[Reflect=formtarget] attribute DOMString formTarget;
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString value;
[CEReactions] attribute DOMString type;
};