ladybird/Libraries/LibWeb/HTML/HTMLMapElement.idl

11 lines
285 B
Text
Raw Permalink Normal View History

// https://html.spec.whatwg.org/multipage/image-maps.html#htmlmapelement
[Exposed=Window]
interface HTMLMapElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute DOMString name;
2024-04-09 13:30:03 -03:00
[SameObject] readonly attribute HTMLCollection areas;
};