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
commit 5c8be3b072
Notes: sideshowbarker 2024-07-16 23:17:55 +09:00
70 changed files with 132 additions and 12 deletions

View file

@ -4,7 +4,8 @@
// https://html.spec.whatwg.org/multipage/image-maps.html#htmlareaelement
[Exposed=Window]
interface HTMLAreaElement : HTMLElement {
// FIXME: [HTMLConstructor] constructor();
[HTMLConstructor] constructor();
// FIXME: [CEReactions] attribute DOMString alt;
// FIXME: [CEReactions] attribute DOMString coords;
@ -18,6 +19,7 @@ interface HTMLAreaElement : HTMLElement {
// Obsolete
[Reflect=nohref] attribute boolean noHref;
};
HTMLAreaElement includes HTMLHyperlinkElementUtils;