mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-07 12:20:12 +01:00
13 lines
317 B
Plaintext
13 lines
317 B
Plaintext
#import <HTML/HTMLElement.idl>
|
|
|
|
// https://html.spec.whatwg.org/multipage/image-maps.html#htmlmapelement
|
|
[Exposed=Window]
|
|
interface HTMLMapElement : HTMLElement {
|
|
|
|
[HTMLConstructor] constructor();
|
|
|
|
[CEReactions, Reflect] attribute DOMString name;
|
|
[SameObject] readonly attribute HTMLCollection areas;
|
|
|
|
};
|