Serenity Operating System
at master 23 lines 914 B view raw
1#import <HTML/HTMLElement.idl> 2#import <HTML/HTMLHyperlinkElementUtils.idl> 3 4// https://html.spec.whatwg.org/multipage/image-maps.html#htmlareaelement 5[Exposed=Window] 6interface HTMLAreaElement : HTMLElement { 7 // FIXME: [HTMLConstructor] constructor(); 8 9 // FIXME: [CEReactions] attribute DOMString alt; 10 // FIXME: [CEReactions] attribute DOMString coords; 11 // FIXME: [CEReactions] attribute DOMString shape; 12 // FIXME: [CEReactions] attribute DOMString target; 13 // FIXME: [CEReactions] attribute DOMString download; 14 // FIXME: [CEReactions] attribute USVString ping; 15 // FIXME: [CEReactions] attribute DOMString rel; 16 // FIXME: [SameObject, PutForwards=value] readonly attribute DOMTokenList relList; 17 // FIXME: [CEReactions] attribute DOMString referrerPolicy; 18 19 // Obsolete 20 [Reflect=nohref] attribute boolean noHref; 21}; 22 23HTMLAreaElement includes HTMLHyperlinkElementUtils;