1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-10 10:01:13 +09: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
Notes: sideshowbarker 2024-07-17 18:05:00 +09:00
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;
};