HTMLMapElement.idl 327 B

123456789101112
  1. #import <HTML/HTMLElement.idl>
  2. // https://html.spec.whatwg.org/multipage/image-maps.html#htmlmapelement
  3. [Exposed=Window]
  4. interface HTMLMapElement : HTMLElement {
  5. [HTMLConstructor] constructor();
  6. [CEReactions, Reflect] attribute DOMString name;
  7. // FIXME: [SameObject] readonly attribute HTMLCollection areas;
  8. };