Definition
HTML Standard defines HTMLMenuElement
[Exposed=Window]
interface HTMLMenuElement : HTMLElement {
[HTMLConstructor] constructor();
// also has obsolete members
};
partial interface HTMLMenuElement {
[CEReactions] attribute boolean compact;
};
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface HTMLMenuElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions] attribute boolean compact;
// also has obsolete members
};