1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:08:12 +00:00

LibWeb: Add missing constructors to HTMLElement IDLs

This commit is contained in:
Srikavin Ramkumar 2023-03-23 03:48:52 -04:00 committed by Andreas Kling
parent daf421846c
commit 5c8be3b072
70 changed files with 132 additions and 12 deletions

View file

@ -4,7 +4,8 @@
// https://html.spec.whatwg.org/multipage/text-level-semantics.html#htmlanchorelement
[Exposed=Window]
interface HTMLAnchorElement : HTMLElement {
// FIXME: [HTMLConstructor] constructor();
[HTMLConstructor] constructor();
[Reflect] attribute DOMString target;
[Reflect] attribute DOMString download;
@ -20,6 +21,7 @@ interface HTMLAnchorElement : HTMLElement {
[Reflect] attribute DOMString name;
[Reflect] attribute DOMString rev;
[Reflect] attribute DOMString shape;
};
HTMLAnchorElement includes HTMLHyperlinkElementUtils;