ladybird/Userland/Libraries/LibWeb/HTML/HTMLAreaElement.idl
Sam Atkins 8d2d315858 LibWeb: Extract the HTMLHyperlinkElementUtils IDL mixin
Also added FIXMEs for some missing methods while I was at it.
2022-07-29 17:15:49 +01:00

22 lines
897 B
Text

#import <HTML/HTMLElement.idl>
#import <HTML/HTMLHyperlinkElementUtils.idl>
// https://html.spec.whatwg.org/multipage/image-maps.html#htmlareaelement
interface HTMLAreaElement : HTMLElement {
// FIXME: [HTMLConstructor] constructor();
// FIXME: [CEReactions] attribute DOMString alt;
// FIXME: [CEReactions] attribute DOMString coords;
// FIXME: [CEReactions] attribute DOMString shape;
// FIXME: [CEReactions] attribute DOMString target;
// FIXME: [CEReactions] attribute DOMString download;
// FIXME: [CEReactions] attribute USVString ping;
// FIXME: [CEReactions] attribute DOMString rel;
// FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
// FIXME: [CEReactions] attribute DOMString referrerPolicy;
// Obsolete
[Reflect=nohref] attribute boolean noHref;
};
HTMLAreaElement includes HTMLHyperlinkElementUtils;