2024-05-31 17:35:51 -03:00
|
|
|
#import <Fetch/Request.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
#import <HTML/HTMLElement.idl>
|
2022-07-27 16:20:38 -03:00
|
|
|
#import <HTML/HTMLHyperlinkElementUtils.idl>
|
2022-02-15 16:10:51 -03:00
|
|
|
|
2022-07-27 16:20:38 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/image-maps.html#htmlareaelement
|
2023-09-03 00:36:00 -03:00
|
|
|
[Exposed=Window]
|
2020-07-31 23:04:26 -03:00
|
|
|
interface HTMLAreaElement : HTMLElement {
|
2023-03-23 04:48:52 -03:00
|
|
|
|
|
|
|
|
[HTMLConstructor] constructor();
|
2020-07-31 23:04:26 -03:00
|
|
|
|
2023-02-28 22:45:18 -03:00
|
|
|
[CEReactions, Reflect] attribute DOMString alt;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString coords;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString shape;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString target;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString download;
|
|
|
|
|
[CEReactions, Reflect] attribute USVString ping;
|
|
|
|
|
[CEReactions, Reflect] attribute DOMString rel;
|
2024-05-16 02:02:56 -03:00
|
|
|
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
|
2024-05-31 17:35:51 -03:00
|
|
|
[CEReactions, Reflect=referrerpolicy, Enumerated=ReferrerPolicy] attribute DOMString referrerPolicy;
|
2021-10-03 14:39:12 -03:00
|
|
|
|
2022-07-27 16:20:38 -03:00
|
|
|
// Obsolete
|
|
|
|
|
[Reflect=nohref] attribute boolean noHref;
|
2023-03-23 04:48:52 -03:00
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|
2022-07-27 16:20:38 -03:00
|
|
|
|
|
|
|
|
HTMLAreaElement includes HTMLHyperlinkElementUtils;
|